Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for yieldList (0.25 sec)

  1. src/cmd/cgo/gcc.go

    		r = c.Type(unqual(dtype.ReturnType), pos)
    		gr = []*ast.Field{{Type: r.Go}}
    	}
    	return &FuncType{
    		Params: p,
    		Result: r,
    		Go: &ast.FuncType{
    			Params:  &ast.FieldList{List: gp},
    			Results: &ast.FieldList{List: gr},
    		},
    	}
    }
    
    // Identifier
    func (c *typeConv) Ident(s string) *ast.Ident {
    	return ast.NewIdent(s)
    }
    
    // Opaque type of n bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		if node.Body != nil {
    			u.node(node.Body)
    		}
    	case *ast.FuncType:
    		if node.Params != nil {
    			u.node(node.Params)
    		}
    		if node.Results != nil {
    			u.node(node.Results)
    		}
    	case *ast.FieldList:
    		for _, field := range node.List {
    			u.node(field)
    		}
    	case *ast.Field:
    		u.node(node.Type)
    
    	// statements
    
    	case *ast.BlockStmt:
    		defer u.scoped()()
    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/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Field.Doc", Field, 0},
    		{"Field.Names", Field, 0},
    		{"Field.Tag", Field, 0},
    		{"Field.Type", Field, 0},
    		{"FieldFilter", Type, 0},
    		{"FieldList", Type, 0},
    		{"FieldList.Closing", Field, 0},
    		{"FieldList.List", Field, 0},
    		{"FieldList.Opening", Field, 0},
    		{"File", Type, 0},
    		{"File.Comments", Field, 0},
    		{"File.Decls", Field, 0},
    		{"File.Doc", Field, 0},
    		{"File.FileEnd", Field, 20},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg go/ast, type Field struct, Type Expr
    pkg go/ast, type FieldFilter func(string, reflect.Value) bool
    pkg go/ast, type FieldList struct
    pkg go/ast, type FieldList struct, Closing token.Pos
    pkg go/ast, type FieldList struct, List []*Field
    pkg go/ast, type FieldList struct, Opening token.Pos
    pkg go/ast, type File struct
    pkg go/ast, type File struct, Comments []*CommentGroup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/static/trace_viewer_full.html

    var len=attr('length'),isString=partialComplete(isOfType,String);function defined(value){return value!==undefined;}
    function hasAllProperties(fieldList,o){return(o instanceof Object)&&all(function(field){return(field in o);},fieldList);}
    function cons(x,xs){return[x,xs];}
    var emptyList=null,head=attr(0),tail=attr(1);function arrayAsList(inputArray){return reverseList(inputArray.reduce(flip(cons),emptyList));}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top