HomeSort by relevance Sort by last modified time
    Searched full:nil (Results 826 - 850 of 5764) sorted by null

<<31323334353637383940>>

  /prebuilts/go/linux-x86/test/fixedbugs/
bug394.go 10 return nil // ERROR "non-declaration statement outside function body|expected declaration"
issue7547.go 12 return nil
issue7996.go 12 nil: {},
issue8047b.go 7 // Issue 8047. Defer setup during panic shouldn't crash for nil defer.
issue8076.go 13 _ = *(*int)(nil)
  /prebuilts/go/linux-x86/test/fixedbugs/bug404.dir/
one.go 15 return nil
  /prebuilts/go/linux-x86/test/syntax/
typesw.go 10 switch main() := interface{}(nil).(type) { // ERROR "invalid variable name"
  /build/blueprint/gotestmain/
gotestmain.go 43 f, err := parser.ParseFile(token.NewFileSet(), src, nil, 0)
44 if err != nil {
74 if err != nil {
79 if err != nil {
100 return true, nil
104 testing.Main(matchString, t, nil, nil)
  /build/soong/env/
env.go 39 if err != nil {
46 if err != nil {
50 return nil
55 if err != nil {
62 if err != nil {
81 return true, nil
84 return false, nil
  /build/soong/glob/
glob.go 41 if err != nil {
42 return nil, err
58 if err != nil {
63 if err != nil {
75 if err != nil {
94 if err != nil {
99 return nil
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRHashMap.m 65 if ((self = [super init]) != nil) {
66 fNext = nil;
69 if ( fNext != nil ) {
84 if ((self = [super init]) != nil) {
85 fNext = nil;
88 if ( fNext != nil ) {
104 if ( self.fNext != nil ) {
124 if ((anElement = ptrBuffer[i]) != nil) {
137 if ((anElement = ptrBuffer[i]) != nil) {
150 if ( self.fNext != nil ) {
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRHashMap.m 65 if ((self = [super init]) != nil) {
66 fNext = nil;
69 if ( fNext != nil ) {
84 if ((self = [super init]) != nil) {
85 fNext = nil;
88 if ( fNext != nil ) {
104 if ( self.fNext != nil ) {
124 if ((anElement = ptrBuffer[i]) != nil) {
137 if ((anElement = ptrBuffer[i]) != nil) {
150 if ( self.fNext != nil ) {
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRHashMap.m 65 if ((self = [super init]) != nil) {
66 fNext = nil;
69 if ( fNext != nil ) {
84 if ((self = [super init]) != nil) {
85 fNext = nil;
88 if ( fNext != nil ) {
104 if ( self.fNext != nil ) {
124 if ((anElement = ptrBuffer[i]) != nil) {
137 if ((anElement = ptrBuffer[i]) != nil) {
150 if ( self.fNext != nil ) {
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRReaderStream.m 55 if ( self != nil ) {
56 fh = nil;
66 if ( self != nil ) {
77 NSData *retData = nil;
78 if ( fh==nil ) {
115 NSMutableData *myData = nil;
141 stream = nil; // stream is ivar, so reinit it
  /prebuilts/go/darwin-x86/doc/progs/
error.go 29 if err != nil {
60 return 0, nil // OMIT
67 if err != nil {
76 return 0, nil
98 if err := dec.Decode(&val); err != nil {
106 return nil
120 if err != nil {
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
inl.go 59 if rcvr.Sym == nil {
80 if pkg == localpkg || pkg == nil {
108 if fn.Func.Nname == nil {
113 if fn.Nbody == nil {
123 for t := fn.Type.Type.Down.Down.Type; t != nil; t = t.Down {
169 for ; ll != nil; ll = ll.Next {
178 if n == nil {
185 if n.Left.Func != nil && n.Left.Func.Inl != nil {
189 if n.Left.Op == ONAME && n.Left.Left != nil && n.Left.Left.Op == OTYPE && n.Left.Right != nil && n.Left.Right.Op == ONAME { // methods called (…)
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/rand/
util_test.go 17 if err != nil {
29 // Test that passing bits < 2 causes Prime to return nil, error
31 if p, err := rand.Prime(rand.Reader, 1); p != nil || err == nil {
32 t.Errorf("Prime should return nil, error when called with bits < 2")
40 if i, err := rand.Int(rand.Reader, b); err != nil {
48 if err := recover(); err == nil {
  /prebuilts/go/darwin-x86/src/encoding/csv/
reader.go 137 if record != nil {
140 if err != nil {
141 return nil, err
153 return record, nil
158 // A successful call returns err == nil, not err == EOF. Because ReadAll is
165 return records, nil
167 if err != nil {
168 return nil, err
185 if err == nil {
200 if err != nil {
    [all...]
  /prebuilts/go/darwin-x86/src/internal/singleflight/
singleflight_test.go 19 return "bar", nil
24 if err != nil {
33 return nil, someErr
38 if v != nil {
39 t.Errorf("unexpected non-nil value %#v", v)
58 return v, nil
70 if err != nil {
  /prebuilts/go/darwin-x86/src/os/
file.go 19 // if err != nil {
32 // if err != nil {
92 if f == nil {
99 if n == 0 && len(b) > 0 && e == nil {
102 if e != nil {
110 // ReadAt always returns a non-nil error when n < len(b).
113 if f == nil {
118 if m == 0 && e == nil {
121 if e != nil {
134 // Write returns a non-nil error when n != len(b)
    [all...]
  /prebuilts/go/darwin-x86/src/os/signal/
signal_windows_test.go 20 if e != nil {
24 if e != nil {
60 if err != nil {
69 if err != nil {
79 if err != nil {
92 if err != nil {
100 if err != nil {
  /prebuilts/go/linux-x86/doc/progs/
error.go 29 if err != nil {
60 return 0, nil // OMIT
67 if err != nil {
76 return 0, nil
98 if err := dec.Decode(&val); err != nil {
106 return nil
120 if err != nil {
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
inl.go 59 if rcvr.Sym == nil {
80 if pkg == localpkg || pkg == nil {
108 if fn.Func.Nname == nil {
113 if fn.Nbody == nil {
123 for t := fn.Type.Type.Down.Down.Type; t != nil; t = t.Down {
169 for ; ll != nil; ll = ll.Next {
178 if n == nil {
185 if n.Left.Func != nil && n.Left.Func.Inl != nil {
189 if n.Left.Op == ONAME && n.Left.Left != nil && n.Left.Left.Op == OTYPE && n.Left.Right != nil && n.Left.Right.Op == ONAME { // methods called (…)
    [all...]
  /prebuilts/go/linux-x86/src/crypto/rand/
util_test.go 17 if err != nil {
29 // Test that passing bits < 2 causes Prime to return nil, error
31 if p, err := rand.Prime(rand.Reader, 1); p != nil || err == nil {
32 t.Errorf("Prime should return nil, error when called with bits < 2")
40 if i, err := rand.Int(rand.Reader, b); err != nil {
48 if err := recover(); err == nil {
  /prebuilts/go/linux-x86/src/encoding/csv/
reader.go 137 if record != nil {
140 if err != nil {
141 return nil, err
153 return record, nil
158 // A successful call returns err == nil, not err == EOF. Because ReadAll is
165 return records, nil
167 if err != nil {
168 return nil, err
185 if err == nil {
200 if err != nil {
    [all...]

Completed in 609 milliseconds

<<31323334353637383940>>