Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for fun (0.24 sec)

  1. src/cmd/cgo/ast.go

    		}
    	case *ast.TypeAssertExpr:
    		f.walk(&n.X, ctxExpr, visit)
    		f.walk(&n.Type, ctxType, visit)
    	case *ast.CallExpr:
    		if context == ctxAssign2 {
    			f.walk(&n.Fun, ctxCall2, visit)
    		} else {
    			f.walk(&n.Fun, ctxCall, visit)
    		}
    		f.walk(n.Args, ctxExpr, visit)
    	case *ast.StarExpr:
    		f.walk(&n.X, context, visit)
    	case *ast.UnaryExpr:
    		f.walk(&n.X, ctxExpr, visit)
    	case *ast.BinaryExpr:
    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/cgo/gcc.go

    	// This is a call to C.xxx; set goname to "xxx".
    	// It may have already been mangled by rewriteName.
    	var goname string
    	switch fun := call.Call.Fun.(type) {
    	case *ast.SelectorExpr:
    		goname = fun.Sel.Name
    	case *ast.Ident:
    		goname = strings.TrimPrefix(fun.Name, "_C2func_")
    		goname = strings.TrimPrefix(goname, "_Cfunc_")
    	}
    	if goname == "" || goname == "malloc" {
    		return "", false
    	}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg go/ast, const Con ObjKind
    pkg go/ast, const FilterFuncDuplicates MergeMode
    pkg go/ast, const FilterImportDuplicates MergeMode
    pkg go/ast, const FilterUnassociatedComments MergeMode
    pkg go/ast, const Fun ObjKind
    pkg go/ast, const Lbl ObjKind
    pkg go/ast, const Pkg ObjKind
    pkg go/ast, const RECV ChanDir
    pkg go/ast, const SEND ChanDir
    pkg go/ast, const Typ ObjKind
    pkg go/ast, const Var ObjKind
    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)
  4. api/go1.1.txt

    pkg go/ast, const Bad = 0
    pkg go/ast, const Con = 2
    pkg go/ast, const FilterFuncDuplicates = 1
    pkg go/ast, const FilterImportDuplicates = 4
    pkg go/ast, const FilterUnassociatedComments = 2
    pkg go/ast, const Fun = 5
    pkg go/ast, const Lbl = 6
    pkg go/ast, const Pkg = 1
    pkg go/ast, const RECV = 2
    pkg go/ast, const SEND = 1
    pkg go/ast, const Typ = 3
    pkg go/ast, const Var = 4
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top