Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 105 of 105 for SelectorExpr (0.16 sec)

  1. api/go1.5.txt

    pkg go/types, type Info struct, Implicits map[ast.Node]Object
    pkg go/types, type Info struct, InitOrder []*Initializer
    pkg go/types, type Info struct, Scopes map[ast.Node]*Scope
    pkg go/types, type Info struct, Selections map[*ast.SelectorExpr]*Selection
    pkg go/types, type Info struct, Types map[ast.Expr]TypeAndValue
    pkg go/types, type Info struct, Uses map[*ast.Ident]Object
    pkg go/types, type Initializer struct
    pkg go/types, type Initializer struct, Lhs []*Var
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	case *ast.ReturnStmt:
    		u.exprs(node.Results)
    	case *ast.IncDecStmt:
    		u.node(node.X)
    
    	// expressions
    
    	case *ast.CallExpr:
    		u.node(node.Fun)
    		u.exprs(node.Args)
    	case *ast.SelectorExpr:
    		u.node(node.X)
    	case *ast.UnaryExpr:
    		u.node(node.X)
    	case *ast.BinaryExpr:
    		u.node(node.X)
    		u.node(node.Y)
    	case *ast.StarExpr:
    		u.node(node.X)
    	case *ast.ParenExpr:
    		u.node(node.X)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  3. src/cmd/cgo/out.go

    		}
    		if r, ok := goTypes[t.Name]; ok {
    			return goTypesFixup(r)
    		}
    		error_(e.Pos(), "unrecognized Go type %s", t.Name)
    		return &Type{Size: 4, Align: 4, C: c("int")}
    	case *ast.SelectorExpr:
    		id, ok := t.X.(*ast.Ident)
    		if ok && id.Name == "unsafe" && t.Sel.Name == "Pointer" {
    			return &Type{Size: p.PtrSize, Align: p.PtrSize, C: c("void*")}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Scope.Objects", Field, 0},
    		{"Scope.Outer", Field, 0},
    		{"SelectStmt", Type, 0},
    		{"SelectStmt.Body", Field, 0},
    		{"SelectStmt.Select", Field, 0},
    		{"SelectorExpr", Type, 0},
    		{"SelectorExpr.Sel", Field, 0},
    		{"SelectorExpr.X", Field, 0},
    		{"SendStmt", Type, 0},
    		{"SendStmt.Arrow", Field, 0},
    		{"SendStmt.Chan", Field, 0},
    		{"SendStmt.Value", Field, 0},
    		{"SliceExpr", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg go/ast, type SelectStmt struct
    pkg go/ast, type SelectStmt struct, Body *BlockStmt
    pkg go/ast, type SelectStmt struct, Select token.Pos
    pkg go/ast, type SelectorExpr struct
    pkg go/ast, type SelectorExpr struct, Sel *Ident
    pkg go/ast, type SelectorExpr struct, X Expr
    pkg go/ast, type SendStmt struct
    pkg go/ast, type SendStmt struct, Arrow token.Pos
    pkg go/ast, type SendStmt struct, Chan Expr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top