/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/ |
subr.go | 235 if n != nil { 241 if n.Sym != nil { 279 if pkg == nil { 282 if s := pkg.Syms[name]; s != nil { 299 if pkg == nil { 302 if s := pkg.Syms[string(name)]; s != nil { 328 if s.Def == nil { 335 if s1.Def != nil { 343 if s1.Def.Name == nil { 393 if nleft != nil { [all...] |
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
subr.go | 232 if n != nil { 238 if n.Sym != nil { 276 if pkg == nil { 279 if s := pkg.Syms[name]; s != nil { 296 if pkg == nil { 299 if s := pkg.Syms[string(name)]; s != nil { 325 if s.Def == nil { 332 if s1.Def != nil { 340 if s1.Def.Name == nil { 390 if nleft != nil { [all...] |
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/ |
subr.go | 235 if n != nil { 241 if n.Sym != nil { 279 if pkg == nil { 282 if s := pkg.Syms[name]; s != nil { 299 if pkg == nil { 302 if s := pkg.Syms[string(name)]; s != nil { 328 if s.Def == nil { 335 if s1.Def != nil { 343 if s1.Def.Name == nil { 393 if nleft != nil { [all...] |
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
subr.go | 232 if n != nil { 238 if n.Sym != nil { 276 if pkg == nil { 279 if s := pkg.Syms[name]; s != nil { 296 if pkg == nil { 299 if s := pkg.Syms[string(name)]; s != nil { 325 if s.Def == nil { 332 if s1.Def != nil { 340 if s1.Def.Name == nil { 390 if nleft != nil { [all...] |
/build/kati/ |
func.go | 108 return nil 113 if err != nil || n < 0 { 174 if err != nil { 179 if err != nil { 195 return nil 203 if err != nil { 208 if err != nil { 213 if err != nil { 223 if subst != nil { 232 return nil [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRBaseTree.m | 37 ANTLRTreeNavigationNodeDown *navigationNodeDown = nil; 38 ANTLRTreeNavigationNodeUp *navigationNodeUp = nil; 39 ANTLRTreeNavigationNodeEOF *navigationNodeEOF = nil; 44 static id<ANTLRBaseTree> invalidNode = nil; 50 if ( invalidNode == nil ) { 58 if ( invalidNode == nil ) { 81 if ( self != nil ) { 82 children = nil; 85 return nil; 91 if ( self != nil ) { [all...] |
/prebuilts/go/darwin-x86/src/debug/pe/ |
file.go | 77 err = nil 93 if e.val != nil { 103 if err != nil { 104 return nil, err 107 if err != nil { 109 return nil, err 112 return ff, nil 120 if f.closer != nil { 122 f.closer = nil 138 if _, err := r.ReadAt(dosheader[0:], 0); err != nil { [all...] |
/prebuilts/go/linux-x86/src/debug/pe/ |
file.go | 77 err = nil 93 if e.val != nil { 103 if err != nil { 104 return nil, err 107 if err != nil { 109 return nil, err 112 return ff, nil 120 if f.closer != nil { 122 f.closer = nil 138 if _, err := r.ReadAt(dosheader[0:], 0); err != nil { [all...] |
/prebuilts/go/darwin-x86/src/encoding/gob/ |
type.go | 47 // If the user type is not valid, err will be non-nil. To be used when the error handler 53 if ut != nil { 59 if ut = userTypeCache[rt]; ut != nil { 80 return nil, errors.New("can't represent recursive pointer type " + ut.base.String()) 116 gobEncoderInterfaceType = reflect.TypeOf((*GobEncoder)(nil)).Elem() 117 gobDecoderInterfaceType = reflect.TypeOf((*GobDecoder)(nil)).Elem() 118 binaryMarshalerInterfaceType = reflect.TypeOf((*encoding.BinaryMarshaler)(nil)).Elem() 119 binaryUnmarshalerInterfaceType = reflect.TypeOf((*encoding.BinaryUnmarshaler)(nil)).Elem() 120 textMarshalerInterfaceType = reflect.TypeOf((*encoding.TextMarshaler)(nil)).Elem() 121 textUnmarshalerInterfaceType = reflect.TypeOf((*encoding.TextUnmarshaler)(nil)).Elem( [all...] |
/prebuilts/go/darwin-x86/src/go/types/ |
labels.go | 15 all := NewScope(nil, body.Pos(), body.End(), "label") 17 fwdJumps := check.blockBranches(all, nil, nil, body.List) 26 if alt := all.Lookup(name); alt != nil { 46 lstmt *ast.LabeledStmt // labeled statement to which this block belongs, or nil 55 assert(b.gotoTarget(name) == nil) 58 if labels == nil { 66 // or an enclosing block with the given label name, or nil. 68 for s := b; s != nil; s = s.parent { 69 if t := s.labels[name]; t != nil { [all...] |
/prebuilts/go/linux-x86/src/encoding/gob/ |
type.go | 47 // If the user type is not valid, err will be non-nil. To be used when the error handler 53 if ut != nil { 59 if ut = userTypeCache[rt]; ut != nil { 80 return nil, errors.New("can't represent recursive pointer type " + ut.base.String()) 116 gobEncoderInterfaceType = reflect.TypeOf((*GobEncoder)(nil)).Elem() 117 gobDecoderInterfaceType = reflect.TypeOf((*GobDecoder)(nil)).Elem() 118 binaryMarshalerInterfaceType = reflect.TypeOf((*encoding.BinaryMarshaler)(nil)).Elem() 119 binaryUnmarshalerInterfaceType = reflect.TypeOf((*encoding.BinaryUnmarshaler)(nil)).Elem() 120 textMarshalerInterfaceType = reflect.TypeOf((*encoding.TextMarshaler)(nil)).Elem() 121 textUnmarshalerInterfaceType = reflect.TypeOf((*encoding.TextUnmarshaler)(nil)).Elem( [all...] |
/prebuilts/go/linux-x86/src/go/types/ |
labels.go | 15 all := NewScope(nil, body.Pos(), body.End(), "label") 17 fwdJumps := check.blockBranches(all, nil, nil, body.List) 26 if alt := all.Lookup(name); alt != nil { 46 lstmt *ast.LabeledStmt // labeled statement to which this block belongs, or nil 55 assert(b.gotoTarget(name) == nil) 58 if labels == nil { 66 // or an enclosing block with the given label name, or nil. 68 for s := b; s != nil; s = s.parent { 69 if t := s.labels[name]; t != nil { [all...] |
/build/blueprint/bpfmt/ |
bpfmt.go | 43 // If in == nil, the source is the contents of the file with the given filename. 45 if in == nil { 47 if err != nil { 55 if err != nil { 61 file, errs := parser.Parse(filename, r, parser.NewScope(nil)) 74 if err != nil { 85 if err != nil { 91 if err != nil { 107 if err == nil && f.Name() == "Blueprints" { 108 err = processFile(path, nil, os.Stdout [all...] |
/build/blueprint/ |
unpack_test.go | 46 Unset: nil, 48 nil, 61 nil, 74 nil, 90 IsUgly: nil, 92 nil, 105 Nil []string 109 Nil: nil, 111 nil, [all...] |
/prebuilts/go/darwin-x86/src/cmd/vet/ |
copylock.go | 33 checkCopyLocksFunc(f, "func", nil, node.Type) 42 if recv != nil && len(recv.List) > 0 { 44 if path := lockPath(f.pkg.typesPkg, f.pkg.types[expr].Type); path != nil { 49 if typ.Params != nil { 52 if path := lockPath(f.pkg.typesPkg, f.pkg.types[expr].Type); path != nil { 58 if typ.Results != nil { 61 if path := lockPath(f.pkg.typesPkg, f.pkg.types[expr].Type); path != nil { 77 if e == nil { 91 if obj == nil { 99 if typ == nil { [all...] |
/prebuilts/go/darwin-x86/src/debug/dwarf/ |
typeunit.go | 22 cache Type // Cache the type, nil to start. 53 if err != nil { 85 if b.err != nil { 89 return nil 95 if tu == nil { 96 return nil, fmt.Errorf("no type unit with signature %v", sig) 98 if tu.cache != nil { 99 return tu.cache, nil 105 if err != nil { 106 return nil, er [all...] |
/prebuilts/go/darwin-x86/src/io/ioutil/ |
ioutil.go | 24 if e == nil { 38 // A successful call returns err == nil, not err == EOF. Because ReadAll is 46 // A successful call returns err == nil, not err == EOF. Because ReadFile 51 if err != nil { 52 return nil, err 59 if fi, err := f.Stat(); err == nil { 78 if err != nil { 82 if err == nil && n < len(data) { 85 if err1 := f.Close(); err == nil { 102 if err != nil { [all...] |
/prebuilts/go/darwin-x86/src/io/ |
pipe.go | 43 if p.rerr != nil { 46 if p.data != nil { 49 if p.werr != nil { 57 p.data = nil 66 // pipe uses nil to mean not available 67 if b == nil { 77 if p.werr != nil { 84 if p.data == nil { 87 if p.rerr != nil { 91 if p.werr != nil { [all...] |
/prebuilts/go/linux-x86/src/cmd/vet/ |
copylock.go | 33 checkCopyLocksFunc(f, "func", nil, node.Type) 42 if recv != nil && len(recv.List) > 0 { 44 if path := lockPath(f.pkg.typesPkg, f.pkg.types[expr].Type); path != nil { 49 if typ.Params != nil { 52 if path := lockPath(f.pkg.typesPkg, f.pkg.types[expr].Type); path != nil { 58 if typ.Results != nil { 61 if path := lockPath(f.pkg.typesPkg, f.pkg.types[expr].Type); path != nil { 77 if e == nil { 91 if obj == nil { 99 if typ == nil { [all...] |
/prebuilts/go/linux-x86/src/debug/dwarf/ |
typeunit.go | 22 cache Type // Cache the type, nil to start. 53 if err != nil { 85 if b.err != nil { 89 return nil 95 if tu == nil { 96 return nil, fmt.Errorf("no type unit with signature %v", sig) 98 if tu.cache != nil { 99 return tu.cache, nil 105 if err != nil { 106 return nil, er [all...] |
/prebuilts/go/linux-x86/src/io/ioutil/ |
ioutil.go | 24 if e == nil { 38 // A successful call returns err == nil, not err == EOF. Because ReadAll is 46 // A successful call returns err == nil, not err == EOF. Because ReadFile 51 if err != nil { 52 return nil, err 59 if fi, err := f.Stat(); err == nil { 78 if err != nil { 82 if err == nil && n < len(data) { 85 if err1 := f.Close(); err == nil { 102 if err != nil { [all...] |
/prebuilts/go/linux-x86/src/io/ |
pipe.go | 43 if p.rerr != nil { 46 if p.data != nil { 49 if p.werr != nil { 57 p.data = nil 66 // pipe uses nil to mean not available 67 if b == nil { 77 if p.werr != nil { 84 if p.data == nil { 87 if p.rerr != nil { 91 if p.werr != nil { [all...] |
/prebuilts/go/darwin-x86/src/net/ |
fd_windows.go | 40 if e != nil { 43 canCancelIO = syscall.LoadCancelIoEx() == nil 44 if syscall.LoadGetAddrInfo() == nil { 49 hasLoadSetFileCompletionNotificationModes = syscall.LoadSetFileCompletionNotificationModes() == nil 58 if err != nil { 77 return syscall.LoadConnectEx() == nil 114 o.buf.Buf = nil 127 submit func(o *operation) error // if nil, cancel the operation 139 if r.submit != nil { 155 if err != nil { [all...] |
/prebuilts/go/darwin-x86/src/net/http/ |
transfer.go | 56 if rr.ContentLength != 0 && rr.Body == nil { 57 return nil, fmt.Errorf("http: Request.ContentLength=%d with nil Body", rr.ContentLength) 67 if t.Body != nil && len(t.TransferEncoding) == 0 && atLeastHTTP11 { 72 if rerr != nil && rerr != io.EOF { 84 t.Body = nil 85 t.BodyCloser = nil 94 if rr.Request != nil { 109 t.Body = nil 114 if !atLeastHTTP11 || t.Body == nil { [all...] |
/prebuilts/go/linux-x86/src/net/ |
fd_windows.go | 40 if e != nil { 43 canCancelIO = syscall.LoadCancelIoEx() == nil 44 if syscall.LoadGetAddrInfo() == nil { 49 hasLoadSetFileCompletionNotificationModes = syscall.LoadSetFileCompletionNotificationModes() == nil 58 if err != nil { 77 return syscall.LoadConnectEx() == nil 114 o.buf.Buf = nil 127 submit func(o *operation) error // if nil, cancel the operation 139 if r.submit != nil { 155 if err != nil { [all...] |