/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug170.go | 8 var v1 = ([10]int)(nil); // ERROR "illegal|nil|invalid" 9 var v2 [10]int = nil; // ERROR "illegal|nil|incompatible" 11 var v4 = nil; // ERROR "nil" 13 v3 = nil; // ERROR "illegal|nil|incompatible"
|
issue6004.go | 10 _ = nil // ERROR "use of untyped nil" 11 _, _ = nil, 1 // ERROR "use of untyped nil" 12 _, _ = 1, nil // ERROR "use of untyped nil" 13 _ = append(nil, 1, 2, 3) // ERROR "untyped nil"
|
issue4283.go | 7 // Issue 4283: nil == nil can't be done as the type is unknown. 12 return nil == nil // ERROR "invalid" 16 return nil != nil // ERROR "invalid"
|
bug127.go | 10 println(x != nil); // ERROR "illegal|incompatible|nil" 11 println(0 != nil); // ERROR "illegal|incompatible|nil"
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug170.go | 8 var v1 = ([10]int)(nil); // ERROR "illegal|nil|invalid" 9 var v2 [10]int = nil; // ERROR "illegal|nil|incompatible" 11 var v4 = nil; // ERROR "nil" 13 v3 = nil; // ERROR "illegal|nil|incompatible"
|
issue6004.go | 10 _ = nil // ERROR "use of untyped nil" 11 _, _ = nil, 1 // ERROR "use of untyped nil" 12 _, _ = 1, nil // ERROR "use of untyped nil" 13 _ = append(nil, 1, 2, 3) // ERROR "untyped nil"
|
issue4283.go | 7 // Issue 4283: nil == nil can't be done as the type is unknown. 12 return nil == nil // ERROR "invalid" 16 return nil != nil // ERROR "invalid"
|
bug127.go | 10 println(x != nil); // ERROR "illegal|incompatible|nil" 11 println(0 != nil); // ERROR "illegal|incompatible|nil"
|
/prebuilts/go/darwin-x86/src/path/ |
match_test.go | 16 {"abc", "abc", true, nil}, 17 {"*", "abc", true, nil}, 18 {"*c", "abc", true, nil}, 19 {"a*", "a", true, nil}, 20 {"a*", "abc", true, nil}, 21 {"a*", "ab/c", false, nil}, 22 {"a*/b", "abc/b", true, nil}, 23 {"a*/b", "a/c/b", false, nil}, 24 {"a*b*c*d*e*/f", "axbxcxdxe/f", true, nil}, 25 {"a*b*c*d*e*/f", "axbxcxdxexxx/f", true, nil}, [all...] |
/prebuilts/go/linux-x86/src/path/ |
match_test.go | 16 {"abc", "abc", true, nil}, 17 {"*", "abc", true, nil}, 18 {"*c", "abc", true, nil}, 19 {"a*", "a", true, nil}, 20 {"a*", "abc", true, nil}, 21 {"a*", "ab/c", false, nil}, 22 {"a*/b", "abc/b", true, nil}, 23 {"a*/b", "a/c/b", false, nil}, 24 {"a*b*c*d*e*/f", "axbxcxdxe/f", true, nil}, 25 {"a*b*c*d*e*/f", "axbxcxdxexxx/f", true, nil}, [all...] |
/prebuilts/go/darwin-x86/misc/cgo/test/ |
issue6506.go | 22 C.realloc(nil, x) 23 C.memcpy(nil, nil, x) 24 C.memcmp(nil, nil, x) 25 C.memmove(nil, nil, x) 26 C.strncpy(nil, nil, x) 27 C.strncmp(nil, nil, x [all...] |
/prebuilts/go/linux-x86/misc/cgo/test/ |
issue6506.go | 22 C.realloc(nil, x) 23 C.memcpy(nil, nil, x) 24 C.memcmp(nil, nil, x) 25 C.memmove(nil, nil, x) 26 C.strncpy(nil, nil, x) 27 C.strncmp(nil, nil, x [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/ |
gtype.state | 206 (!type pointer 2 nil gc_used 214 (!type undefined 3 nil gc_unused "va_gc" 219 nil ) 221 (!type struct 4 nil gc_used "ivarref_entry" 227 (!type pointer 6 nil gc_used 238 (!type struct 8 nil gc_used "tree_base" 245 (!type pointer 11 nil gc_unused 254 nil ) 259 nil ) 264 nil ) [all...] |
/prebuilts/go/darwin-x86/src/cmd/vet/testdata/ |
nilfunc.go | 20 if fn == nil || Fv == nil || t.F == nil { 21 // no error; these func vars or fields may be nil 23 if F == nil { // ERROR "comparison of function F == nil is always false" 26 if t.M == nil { // ERROR "comparison of function M == nil is always false" 29 if F != nil { // ERROR "comparison of function F != nil is always true [all...] |
/prebuilts/go/linux-x86/src/cmd/vet/testdata/ |
nilfunc.go | 20 if fn == nil || Fv == nil || t.F == nil { 21 // no error; these func vars or fields may be nil 23 if F == nil { // ERROR "comparison of function F == nil is always false" 26 if t.M == nil { // ERROR "comparison of function M == nil is always false" 29 if F != nil { // ERROR "comparison of function F != nil is always true [all...] |
/external/clang/test/Rewriter/ |
weak_byref_objects.m | 3 #define nil 0 5 __weak __block id foo = nil; 6 __block id foo2 = nil; 7 id foo3 = nil; 10 foo = nil; 11 foo2 = nil;
|
rewrite-weak-attr.m | 3 __weak __block id foo = nil; 4 __block id foo2 = nil; 5 id foo3 = nil; 8 foo = nil; 9 foo2 = nil;
|
/prebuilts/go/darwin-x86/src/net/ |
file_unix.go | 16 if err != nil { 19 if err := syscall.SetNonblock(s, true); err != nil { 23 return s, nil 28 if err != nil { 29 return nil, err 33 if err != nil { 35 return nil, os.NewSyscallError("getsockopt", err) 48 return nil, syscall.EPROTONOSUPPORT 51 if err != nil { 53 return nil, er [all...] |
/prebuilts/go/linux-x86/src/net/ |
file_unix.go | 16 if err != nil { 19 if err := syscall.SetNonblock(s, true); err != nil { 23 return s, nil 28 if err != nil { 29 return nil, err 33 if err != nil { 35 return nil, os.NewSyscallError("getsockopt", err) 48 return nil, syscall.EPROTONOSUPPORT 51 if err != nil { 53 return nil, er [all...] |
/prebuilts/go/darwin-x86/test/fixedbugs/issue4326.dir/ |
p2.go | 5 func NewO() p1.O { return nil }
|
/prebuilts/go/linux-x86/test/fixedbugs/issue4326.dir/ |
p2.go | 5 func NewO() p1.O { return nil }
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/ |
region-alias-2.t | 6 REGION_ALIAS ("MY_ALIAS", "NIL");
|
/prebuilts/go/darwin-x86/test/fixedbugs/issue4590.dir/ |
pkg1.go | 18 func (c C) Write() error { return nil } 20 var T = struct{ A }{nil} 21 var U = struct{ B }{nil} 22 var V A = struct{ *C }{nil} 26 }(nil)
|
/prebuilts/go/darwin-x86/test/fixedbugs/issue5755.dir/ |
main.go | 15 a.Test5(nil) 16 a.Test6(nil) 17 a.Test7(nil) 18 a.Test8(nil) 22 a.IsBaz(nil)
|
/prebuilts/go/linux-x86/test/fixedbugs/issue4590.dir/ |
pkg1.go | 18 func (c C) Write() error { return nil } 20 var T = struct{ A }{nil} 21 var U = struct{ B }{nil} 22 var V A = struct{ *C }{nil} 26 }(nil)
|