Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for preamble (0.1 sec)

  1. src/cmd/cgo/out.go

    	// Remove absolute paths from #line comments in the preamble.
    	// They aren't useful for people using the header file,
    	// and they mean that the header files change based on the
    	// exact location of GOPATH.
    	re := regexp.MustCompile(`(?m)^(#line\s+\d+\s+")[^"]*[/\\]([^"]*")`)
    	preamble := re.ReplaceAllString(p.Preamble, "$1$2")
    
    	fmt.Fprintf(fgcch, "/* Start of preamble from import \"C\" comments.  */\n\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	}
    	if nerrors > 0 {
    		// Check if compiling the preamble by itself causes any errors,
    		// because the messages we've printed out so far aren't helpful
    		// to users debugging preamble mistakes. See issue 8442.
    		preambleErrors := p.gccErrors([]byte(builtinProlog + f.Preamble))
    		if len(preambleErrors) > 0 {
    			error_(token.NoPos, "\n%s errors for preamble:\n%s", gccBaseCmd[0], preambleErrors)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    table.tableblock>caption.title {
    	white-space: nowrap;
    	overflow: visible;
    	max-width: 0;
    }
    
    .paragraph.lead>p,
    #preamble>.sectionbody>.paragraph:first-of-type p {
    	color: var(--header-color);
    }
    
    table.tableblock #preamble>.sectionbody>.paragraph:first-of-type p {
    	font-size: inherit;
    }
    
    /* Custom SVG logos coloring */
    path {
    	fill="#02303A";
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top