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

<<41424344454647484950>>

  /prebuilts/go/linux-x86/src/runtime/
crash_test.go 23 if cmd.Env != nil {
49 if err != nil {
56 if err != nil {
60 if err != nil {
64 if err := f.Close(); err != nil {
72 if err := os.Mkdir(filepath.Join(dir, d), 0755); err != nil {
76 if err := ioutil.WriteFile(filepath.Join(dir, fname), []byte(contents), 0666); err != nil {
84 if err != nil {
101 if err != nil {
109 if staleRuntimeErr != nil {
    [all...]
lfstack_test.go 37 if LFStackPop(stack) != nil {
53 if node == nil {
62 if node == nil {
70 if LFStackPop(stack) != nil {
91 stress = nil
107 if node != nil {
123 if node == nil {
139 stress = nil
netpoll_windows.go 71 return nil
78 if _GetQueuedCompletionStatusEx != nil {
90 return nil
106 op = nil
116 return nil
118 if op == nil {
134 if op == nil {
135 throw("netpoll: GetQueuedCompletionStatus returned op == nil")
  /prebuilts/go/linux-x86/src/strconv/
fp_test.go 34 if err != nil {
38 if err1 != nil {
66 if err != nil {
78 if err != nil {
83 if err1 != nil {
91 if err1 != nil {
99 if err != nil {
141 if s.Err() != nil {
  /prebuilts/go/linux-x86/src/testing/iotest/
writer.go 22 return len(p), nil
31 if err == nil {
  /prebuilts/go/linux-x86/test/bench/go1/
parser_test.go 30 if err != nil {
39 if _, err := parser.ParseFile(token.NewFileSet(), "", parserbytes, parser.ParseComments); err != nil {
  /prebuilts/go/linux-x86/test/
const1.go 90 const ptr = nil // ERROR "const.*nil"
91 const _ = string([]byte(nil)) // ERROR "is not a? ?constant"
92 const _ = uintptr(unsafe.Pointer((*int)(nil))) // ERROR "is not a? ?constant"
93 const _ = unsafe.Pointer((*int)(nil)) // ERROR "cannot be nil|invalid constant type"
94 const _ = (*int)(nil) // ERROR "cannot be nil|invalid constant type"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug329.go 44 v.Struct(f1(nil, 0, 0)) // ok
45 v.Complex(f(nil, 0, 0)) // used to fail
  /prebuilts/go/linux-x86/test/fixedbugs/issue4252.dir/
a.go 10 var nil = 1
35 func InlinedFakeNil() int { return nil }
  /prebuilts/go/linux-x86/test/interface/
pointer.go 25 func (start *Start) Next() *Inst { return nil }
30 return nil
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeAdaptor`1.cs 60 * Return a nil node (an empty but non-null node) that can hold
62 * use "t=adaptor.nil(); t.addChild(x); t.addChild(y);"
65 T Nil();
87 /** <summary>Is tree considered a nil node used to make lists of child nodes?</summary> */
102 * If oldRoot is a nil root, just copy or move the children to newRoot.
103 * If not a nil root, make oldRoot a child of newRoot.
107 * old=^(nil a b c), new=r yields ^(r a b c)
110 * If newRoot is a nil-rooted single child tree, use the single
113 * old=^(nil a b c), new=^(nil r) yields ^(r a b c
    [all...]
  /external/boringssl/src/crypto/cipher/test/
make_legacy_aead_tests.go 33 if err != nil {
34 return nil, err
36 return &rc4Stream{cipher}, nil
85 return nil, fmt.Errorf("unknown cipher '%s'", name)
104 digestBuf := h.Sum(nil)
138 if err != nil {
139 return nil, err
158 return nil, fmt.Errorf("unknown hash function '%s'", *mac)
167 return nil, fmt.Errorf("invalid hash for SSLv3: '%s'", *mac)
174 digest = h.Sum(nil)
    [all...]
  /external/e2fsprogs/e2fsck/
dict.c 94 the sentinel nil node, and root->parent->left points back to root */
138 static void free_nodes(dict_t *dict, dnode_t *node, dnode_t *nil)
140 if (node == nil)
142 free_nodes(dict, node->left, nil);
143 free_nodes(dict, node->right, nil);
185 * mismatches. It does not check for every nil node being black, because there
186 * is only one sentinel nil node. The return value of this function is the
191 static unsigned int verify_redblack(dnode_t *nil, dnode_t *root)
195 if (root != nil) {
196 height_left = verify_redblack(nil, root->left)
311 dnode_t *nil = dict_nil(dict), *root = dict_root(dict); local
397 dnode_t *nil = dict_nil(dict), *root = dict_root(dict); local
457 dnode_t *nil = dict_nil(dict); local
496 dnode_t *nil = dict_nil(dict); local
528 dnode_t *nil = dict_nil(dict); local
563 dnode_t *where = dict_root(dict), *nil = dict_nil(dict); local
661 dnode_t *nil = dict_nil(dict), *child, *delparent = delete->parent; local
861 dnode_t *nil = dict_nil(dict), *root = dict_root(dict), *left; local
877 dnode_t *nil = dict_nil(dict), *root = dict_root(dict), *right; local
895 dnode_t *nil = dict_nil(dict), *parent, *left; local
921 dnode_t *nil = dict_nil(dict), *parent, *right; local
1060 dnode_t *nil = &load->nilnode; local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/gofmt/
rewrite.go 21 rewrite = nil // disable any previous rewrite
40 if err != nil {
91 if x := recover(); x != nil {
105 objectPtrNil = reflect.ValueOf((*ast.Object)(nil))
106 scopePtrNil = reflect.ValueOf((*ast.Scope)(nil))
108 identType = reflect.TypeOf((*ast.Ident)(nil))
109 objectPtrType = reflect.TypeOf((*ast.Object)(nil))
111 callExprType = reflect.TypeOf((*ast.CallExpr)(nil))
112 scopePtrType = reflect.TypeOf((*ast.Scope)(nil))
123 // rewrite; don't follow them but replace with nil instea
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/
commands.go 50 "tags": {nil, report.Tags, nil, false, "Outputs all tags in the profile"},
51 "raw": {c, report.Raw, nil, false, "Outputs a text representation of the raw profile"},
52 "dot": {c, report.Dot, nil, false, "Outputs a graph in DOT format"},
53 "top": {c, report.Text, nil, false, "Outputs top entries in text form"},
54 "tree": {c, report.Tree, nil, false, "Outputs a text rendering of call graph"},
55 "text": {c, report.Text, nil, false, "Outputs top entries in text form"},
56 "disasm": {c, report.Dis, nil, true, "Output annotated assembly for functions matching regexp or address"},
57 "list": {c, report.List, nil, true, "Output annotated source for functions matching regexp"},
58 "peek": {c, report.Tree, nil, true, "Output callers/callees of functions matching regexp"}
    [all...]
  /prebuilts/go/darwin-x86/src/debug/macho/
file_test.go 29 nil,
30 nil,
31 nil,
32 nil,
33 nil,
34 nil,
35 nil,
53 nil,
54 nil,
55 nil,
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
request.go 127 // For client requests a nil body means the request has no
131 // For server requests the Request Body is always non-nil
141 // For client requests, a value of 0 means unknown if Body is not nil.
188 // trailer keys, with nil values. (The client declares which trailers it
191 // can be read again and will contain non-nil values, if they were sent
195 // the trailer keys to later send. The values may be nil or their final
224 // otherwise it leaves the field nil.
260 return c, nil
262 return nil, ErrNoCookie
299 // multipart/form-data POST request, else returns nil and an error
    [all...]
  /prebuilts/go/linux-x86/src/cmd/gofmt/
rewrite.go 21 rewrite = nil // disable any previous rewrite
40 if err != nil {
91 if x := recover(); x != nil {
105 objectPtrNil = reflect.ValueOf((*ast.Object)(nil))
106 scopePtrNil = reflect.ValueOf((*ast.Scope)(nil))
108 identType = reflect.TypeOf((*ast.Ident)(nil))
109 objectPtrType = reflect.TypeOf((*ast.Object)(nil))
111 callExprType = reflect.TypeOf((*ast.CallExpr)(nil))
112 scopePtrType = reflect.TypeOf((*ast.Scope)(nil))
123 // rewrite; don't follow them but replace with nil instea
    [all...]
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/commands/
commands.go 50 "tags": {nil, report.Tags, nil, false, "Outputs all tags in the profile"},
51 "raw": {c, report.Raw, nil, false, "Outputs a text representation of the raw profile"},
52 "dot": {c, report.Dot, nil, false, "Outputs a graph in DOT format"},
53 "top": {c, report.Text, nil, false, "Outputs top entries in text form"},
54 "tree": {c, report.Tree, nil, false, "Outputs a text rendering of call graph"},
55 "text": {c, report.Text, nil, false, "Outputs top entries in text form"},
56 "disasm": {c, report.Dis, nil, true, "Output annotated assembly for functions matching regexp or address"},
57 "list": {c, report.List, nil, true, "Output annotated source for functions matching regexp"},
58 "peek": {c, report.Tree, nil, true, "Output callers/callees of functions matching regexp"}
    [all...]
  /prebuilts/go/linux-x86/src/debug/macho/
file_test.go 29 nil,
30 nil,
31 nil,
32 nil,
33 nil,
34 nil,
35 nil,
53 nil,
54 nil,
55 nil,
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
request.go 127 // For client requests a nil body means the request has no
131 // For server requests the Request Body is always non-nil
141 // For client requests, a value of 0 means unknown if Body is not nil.
188 // trailer keys, with nil values. (The client declares which trailers it
191 // can be read again and will contain non-nil values, if they were sent
195 // the trailer keys to later send. The values may be nil or their final
224 // otherwise it leaves the field nil.
260 return c, nil
262 return nil, ErrNoCookie
299 // multipart/form-data POST request, else returns nil and an error
    [all...]
  /build/blueprint/proptools/
proptools.go 63 // Bool takes a pointer to a bool and returns true iff the pointer is non-nil and points to a true
66 if b != nil {
72 // String takes a pointer to a string and returns the value of the string if the pointer is non-nil,
75 if s != nil {
  /build/kati/cmd/kati/
main.go 107 if err != nil {
124 if err != nil {
149 if err == nil {
183 if err != nil {
208 if err != nil {
220 if err != nil {
231 if err != nil {
250 if err != nil {
262 if err != nil {
277 if err != nil {
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
AMutableDictionary.m 49 root.lnode = nil;
51 root.rnode = nil;
72 root.lnode = nil;
74 root.rnode = nil;
91 id obj = nil;
108 userInfo:nil];
109 return nil; // not a key that I know how to deal with
112 if ( node != nil ) {
117 obj = nil;
139 userInfo:nil];
    [all...]
ANTLRPtrBuffer.m 64 if ( self != nil ) {
70 ptrBuffer[idx] = nil;
82 if ( self != nil ) {
88 ptrBuffer[idx] = nil;
103 if ( self.fNext != nil ) {
111 tmp = nil;
144 tmp = nil;
147 ptrBuffer[idx] = nil;
212 id v = nil;
215 ptrBuffer[ptr] = nil;
    [all...]

Completed in 692 milliseconds

<<41424344454647484950>>