Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for processing (0.23 sec)

  1. src/cmd/cgo/ast.go

    	case *ast.Expr:
    		switch (*x).(type) {
    		case *ast.SelectorExpr:
    			f.saveRef(x, context)
    		}
    	case *ast.CallExpr:
    		f.saveCall(x, context)
    	}
    }
    
    // Save references to C.xxx for later processing.
    func (f *File) saveRef(n *ast.Expr, context astContext) {
    	sel := (*n).(*ast.SelectorExpr)
    	// For now, assume that the only instance of capital C is when
    	// used as the imported package identifier.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jun 07 16:54:27 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/lex/input.go

    func (in *Input) macroName() string {
    	// We use the Stack's input method; no macro processing at this stage.
    	tok := in.Stack.Next()
    	if tok != scanner.Ident {
    		in.expectText("expected identifier after # directive")
    	}
    	// Name is alphanumeric by definition.
    	return in.Stack.Text()
    }
    
    // #define processing.
    func (in *Input) define() {
    	name := in.macroName()
    	args, tokens := in.macroDefinition(name)
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  3. src/cmd/cgo/doc.go

    to a type, a function, a constant, or a global variable. Cgo must
    decide which.
    
    The obvious thing for cgo to do is to process the preamble, expanding
    #includes and processing the corresponding C code. That would require
    a full C parser and type checker that was also aware of any extensions
    known to the system compiler (for example, all the GNU C extensions) as
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    		// See golang.org/issue/6563.
    		pos := (*r.Expr).Pos()
    		if x, ok := expr.(*ast.Ident); ok {
    			expr = &ast.Ident{NamePos: pos, Name: x.Name}
    		}
    
    		// Change AST, because some later processing depends on it,
    		// and also because -godefs mode still prints the AST.
    		old := *r.Expr
    		*r.Expr = expr
    
    		// Record source-level edit for cgo output.
    		if !r.Done {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  5. src/archive/tar/reader.go

    	}
    	return paxHdrs, nil
    }
    
    // readHeader reads the next block header and assumes that the underlying reader
    // is already aligned to a block boundary. It returns the raw block of the
    // header in case further processing is required.
    //
    // The err will be set to io.EOF only when one of the following occurs:
    //   - Exactly 0 bytes are read and EOF is hit.
    //   - Exactly 1 block of zeros is read and EOF is hit.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Mar 08 01:59:14 GMT 2024
    - 26.8K bytes
    - Viewed (0)
  6. src/bufio/scan.go

    // returned by a Split function to indicate that the scanning should stop
    // with no error. If the token being delivered with this error is not nil,
    // the token is the last token.
    //
    // The value is useful to stop processing early or when it is necessary to
    // deliver a final empty token (which is different from a nil token).
    // One could achieve the same behavior with a custom error value but
    // providing one here is tidier.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Oct 23 09:06:30 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg syscall (windows-386), type ProcessInformation struct
    pkg syscall (windows-386), type ProcessInformation struct, Process Handle
    pkg syscall (windows-386), type ProcessInformation struct, ProcessId uint32
    pkg syscall (windows-386), type ProcessInformation struct, Thread Handle
    pkg syscall (windows-386), type ProcessInformation struct, ThreadId uint32
    pkg syscall (windows-386), type Protoent struct
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  8. misc/ios/go_ios_exec.go

    		return fmt.Errorf("xcrun simctl launch booted %q: %v", bundleID, err)
    	}
    	var processID int
    	var ignore string
    	if _, err := fmt.Sscanf(string(out), "%s %d", &ignore, &processID); err != nil {
    		return fmt.Errorf("runSimulator: couldn't find processID from `simctl launch`: %v (%q)", err, out)
    	}
    	_, err = runLLDB("ios-simulator", appdir, strconv.Itoa(processID), args)
    	return err
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  9. api/go1.4.txt

    pkg syscall (windows-386), type ProcessEntry32 struct, ParentProcessID uint32
    pkg syscall (windows-386), type ProcessEntry32 struct, PriClassBase int32
    pkg syscall (windows-386), type ProcessEntry32 struct, ProcessID uint32
    pkg syscall (windows-386), type ProcessEntry32 struct, Size uint32
    pkg syscall (windows-386), type ProcessEntry32 struct, Threads uint32
    pkg syscall (windows-386), type ProcessEntry32 struct, Usage uint32
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
  10. api/go1.9.txt

    pkg net/http, func ServeTLS(net.Listener, Handler, string, string) error
    pkg net/http, method (*Server) RegisterOnShutdown(func())
    pkg net/http, method (*Server) ServeTLS(net.Listener, string, string) error
    pkg net/http/fcgi, func ProcessEnv(*http.Request) map[string]string
    pkg net/http/httptest, method (*Server) Certificate() *x509.Certificate
    pkg net/http/httptest, method (*Server) Client() *http.Client
    pkg reflect, func MakeMapWithSize(Type, int) Value
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Oct 04 20:20:20 GMT 2021
    - 10.7K bytes
    - Viewed (0)
Back to top