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

<<41424344454647484950>>

  /prebuilts/go/linux-x86/src/compress/gzip/
gunzip.go 89 if err := z.readHeader(true); err != nil {
90 return nil, err
92 return z, nil
100 if z.digest == nil {
106 z.err = nil
144 if err != nil {
157 return string(s), nil
159 return string(z.buf[0:i]), nil
166 if err != nil {
169 return uint32(z.buf[0]) | uint32(z.buf[1])<<8, nil
    [all...]
  /prebuilts/go/linux-x86/src/net/rpc/jsonrpc/
all_test.go 38 return nil
43 return nil
51 return nil
70 if err := dec.Decode(&resp); err != nil {
73 if resp.Error == nil {
74 t.Fatalf("Expected error, got nil")
86 if err := dec.Decode(&resp); err != nil {
89 if resp.Error == nil {
90 t.Fatalf("Expected error, got nil")
105 if err != nil {
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
os1_linux.go 39 futex(unsafe.Pointer(addr), _FUTEX_WAIT, val, nil, nil, 0)
56 futex(unsafe.Pointer(addr), _FUTEX_WAIT, val, unsafe.Pointer(&ts), nil, 0)
62 ret := futex(unsafe.Pointer(addr), _FUTEX_WAKE, cnt, nil, nil, 0)
130 // May run with m.p==nil, so write barriers are not allowed.
146 rtsigprocmask(_SIG_SETMASK, &oset, nil, int32(unsafe.Sizeof(oset)))
158 if stack == nil {
162 ret := clone(cloneFlags, unsafe.Pointer(uintptr(stack)+stacksize), nil, nil, fn
    [all...]
mfinal.go 67 if finq == nil || finq.cnt == int32(len(finq.fin)) {
68 if finc == nil {
107 for fb := allfin; fb != nil; fb = fb.alllink {
149 finq = nil
150 if fb == nil {
161 for fb != nil {
165 framesz := unsafe.Sizeof((interface{})(nil)) + uintptr(f.nret)
171 frame = mallocgc(framesz, nil, flagNoScan)
175 if f.fint == nil {
196 reflectcall(nil, unsafe.Pointer(f.fn), frame, uint32(framesz), uint32(framesz)
    [all...]
  /prebuilts/go/linux-x86/src/runtime/trace/
trace_test.go 22 if err := Start(buf); err != nil {
39 if err := Start(buf); err != nil {
42 if err := Start(buf); err == nil {
51 if err := Start(buf); err != nil {
59 if err != nil {
69 if err != nil {
70 return nil, nil, err
78 return events, gs, nil
94 if err != nil {
    [all...]
  /prebuilts/go/darwin-x86/src/bufio/
scan.go 48 // while scanning lines, SplitFunc can return (0, nil, nil) to signal the
52 // If the returned error is non-nil, scanning stops and the error
88 return nil
111 // will return nil.
120 if s.end > s.start || s.err != nil {
121 advance, token, err := s.split(s.buf[s.start:s.end], s.err != nil)
122 if err != nil {
130 if token != nil {
131 if s.err == nil || advance > 0
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
type.go 124 tags []string // field tags; nil if there are no tags
132 // if no field has a tag, tags may be nil.
136 if f.name != "_" && fset.insert(f) != nil {
171 // A Tuple represents an ordered list of variables; a nil *Tuple is a valid (empty) tuple.
183 return nil
188 if t != nil {
204 recv *Var // nil if not a method
205 params *Tuple // (incoming) parameters from left to right; or nil
206 results *Tuple // (outgoing) results from left to right; or nil
211 // and results, either of which may be nil. If variadic is set, the functio
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
mfinal.go 67 if finq == nil || finq.cnt == int32(len(finq.fin)) {
68 if finc == nil {
107 for fb := allfin; fb != nil; fb = fb.alllink {
149 finq = nil
150 if fb == nil {
161 for fb != nil {
165 framesz := unsafe.Sizeof((interface{})(nil)) + uintptr(f.nret)
171 frame = mallocgc(framesz, nil, flagNoScan)
175 if f.fint == nil {
196 reflectcall(nil, unsafe.Pointer(f.fn), frame, uint32(framesz), uint32(framesz)
    [all...]
  /prebuilts/go/linux-x86/src/bufio/
scan.go 48 // while scanning lines, SplitFunc can return (0, nil, nil) to signal the
52 // If the returned error is non-nil, scanning stops and the error
88 return nil
111 // will return nil.
120 if s.end > s.start || s.err != nil {
121 advance, token, err := s.split(s.buf[s.start:s.end], s.err != nil)
122 if err != nil {
130 if token != nil {
131 if s.err == nil || advance > 0
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
type.go 124 tags []string // field tags; nil if there are no tags
132 // if no field has a tag, tags may be nil.
136 if f.name != "_" && fset.insert(f) != nil {
171 // A Tuple represents an ordered list of variables; a nil *Tuple is a valid (empty) tuple.
183 return nil
188 if t != nil {
204 recv *Var // nil if not a method
205 params *Tuple // (incoming) parameters from left to right; or nil
206 results *Tuple // (outgoing) results from left to right; or nil
211 // and results, either of which may be nil. If variadic is set, the functio
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/gob/
codec_test.go 47 if e := recover(); e != nil {
136 state := &encoderState{enc: nil, b: b}
149 instr := &encInstr{encBool, 6, nil, 0}
161 instr := &encInstr{encInt, 6, nil, 0}
173 instr := &encInstr{encUint, 6, nil, 0}
185 instr := &encInstr{encInt, 6, nil, 0}
197 instr := &encInstr{encUint, 6, nil, 0}
209 instr := &encInstr{encInt, 6, nil, 0}
221 instr := &encInstr{encUint, 6, nil, 0}
233 instr := &encInstr{encInt, 6, nil, 0
    [all...]
  /prebuilts/go/linux-x86/src/encoding/gob/
codec_test.go 47 if e := recover(); e != nil {
136 state := &encoderState{enc: nil, b: b}
149 instr := &encInstr{encBool, 6, nil, 0}
161 instr := &encInstr{encInt, 6, nil, 0}
173 instr := &encInstr{encUint, 6, nil, 0}
185 instr := &encInstr{encInt, 6, nil, 0}
197 instr := &encInstr{encUint, 6, nil, 0}
209 instr := &encInstr{encInt, 6, nil, 0}
221 instr := &encInstr{encUint, 6, nil, 0}
233 instr := &encInstr{encInt, 6, nil, 0
    [all...]
  /build/blueprint/bootstrap/bpdoc/
bpdoc.go 43 if docs == nil {
45 if err != nil {
46 return nil, err
52 if err != nil {
53 return nil, err
60 if docs == nil {
61 return nil, fmt.Errorf("package %q type %q not found", pkg, name)
67 return docs, nil
85 if dc.docs[name] != nil {
112 ret.Properties = append([]PropertyDocs(nil), ret.Properties...
    [all...]
  /build/soong/common/
arch.go 291 if archFeatureMap[arch] == nil {
488 if err != nil {
516 if err != nil {
525 if err != nil {
596 return nil
617 return false, nil
621 return true, nil
625 if err != nil {
818 if variables.CrossHost != nil && *variables.CrossHost != "" {
823 return nil, fmt.Errorf("Unsupported secondary host: %s", *variables.CrossHost
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRuleStack.m 55 if ((self = [super init]) != nil) {
62 if ((self = [super initWithLen:cnt]) != nil) {
82 if ((anElement = ptrBuffer[i]) != nil)
93 if ((anElement = ptrBuffer[i]) != nil) {
112 if (ptrBuffer[idx] != nil) [ptrBuffer[idx] release];
123 return nil;
135 if ((aHashRule = ptrBuffer[aRuleIndex]) == nil) {
139 if (( aRuleMemo = [aHashRule objectAtIndex:aStartIndex] ) == nil ) {
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRuleStack.m 55 if ((self = [super init]) != nil) {
62 if ((self = [super initWithLen:cnt]) != nil) {
82 if ((anElement = ptrBuffer[i]) != nil)
93 if ((anElement = ptrBuffer[i]) != nil) {
112 if (ptrBuffer[idx] != nil) [ptrBuffer[idx] release];
123 return nil;
135 if ((aHashRule = ptrBuffer[aRuleIndex]) == nil) {
139 if (( aRuleMemo = [aHashRule objectAtIndex:aStartIndex] ) == nil ) {
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRuleStack.m 55 if ((self = [super init]) != nil) {
62 if ((self = [super initWithLen:cnt]) != nil) {
82 if ((anElement = ptrBuffer[i]) != nil)
93 if ((anElement = ptrBuffer[i]) != nil) {
112 if (ptrBuffer[idx] != nil) [ptrBuffer[idx] release];
123 return nil;
135 if ((aHashRule = ptrBuffer[aRuleIndex]) == nil) {
139 if (( aRuleMemo = [aHashRule objectAtIndex:aStartIndex] ) == nil ) {
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/misc/
ANTLRFastQueueTest.m 19 STAssertNotNil(queue, @"Queue was not created and was nil");
26 STAssertNotNil(queue, @"Queue was not created and was nil");
39 STAssertNotNil(queue, @"Queue was not created and was nil");
56 STAssertNotNil(queue, @"Queue was not created and was nil");
61 STAssertNotNil(head, @"Object returned from head is nil");
69 STAssertNotNil(queue, @"Queue was not created and was nil");
82 STAssertNotNil(queue, @"Queue was not created and was nil");
92 STAssertNotNil(queue, @"Queue was not created and was nil");
  /external/clang/test/Sema/
nowarn-documentation-property.m 9 /// @return `nil` if there is no search string, and no prefix.
13 /// @return `nil` if there is no search string.
  /external/clang/test/SemaObjC/
class-method-lookup.m 38 #define nil (void*)0
43 [obj setWindow:nil]; // expected-warning {{'Object' may not respond to 'setWindow:'}}
severe-syntax-error.m 11 static NSArray* prefixArray[] = @"BEGIN:", @"END:", @"VERSION:", @"N:", @"FN:", @"TEL;", @"TEL:", nil; // expected-error {{array initializer must be an initializer list}} \
15 static NSString* prefixArray1[] = @"BEGIN:", @"END:", @"VERSION:", @"N:", @"FN:", @"TEL;", @"TEL:", nil; // expected-error {{unknown type name 'NSString'}} \
  /external/compiler-rt/test/asan/TestCases/Darwin/
cstring_literals_regtest.mm 14 NSString *res = nil;
15 if ([scanner scanString:@"MAJOR=" intoString:nil] &&
  /external/llvm/utils/emacs/
emacs.el 10 (indent-tabs-mode . nil)
19 (lambda nil
  /external/skia/experimental/iOSSampleApp/Shared/
skia_ios.mm 28 ? UIApplicationMain(argc, argv, nil, nil) : (int) launchType;
  /external/skia/tools/lua/
dumpops.lua 27 -- then nil out so it doesn't appear in tostr()
29 t.verb = nil

Completed in 867 milliseconds

<<41424344454647484950>>