HomeSort by relevance Sort by last modified time
    Searched defs:nil (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/clang/test/Analysis/Inputs/
system-header-simulator-for-nullability.h 3 #define nil 0 macro
system-header-simulator-for-objc-dealloc.h 3 #define nil ((id)0) macro
  /external/clang/test/Index/
complete-macros.c 4 #define nil 0 macro
13 int *ip = nil;
14 ip = nil;
15 g(nil);
35 // CHECK-CC2: macro definition:{TypedText nil} (32)
38 // CHECK-CC3: macro definition:{TypedText nil} (65)
  /prebuilts/go/darwin-x86/test/fixedbugs/issue4252.dir/
a.go 10 var nil = 1 var
35 func InlinedFakeNil() int { return nil }
  /prebuilts/go/linux-x86/test/fixedbugs/issue4252.dir/
a.go 10 var nil = 1 var
35 func InlinedFakeNil() int { return nil }
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/set/
set.h 39 #define nil (~((unsigned) 0)) /* An impossible set member all bits on (big!) */ macro
  /external/clang/test/SemaTemplate/
example-typelist.cpp 5 struct nil { }; struct
7 template<typename Head, typename Tail = nil>
33 struct length<nil> {
66 class reverse<nil> {
68 typedef nil type;
91 struct find<nil, T> {
92 typedef nil type;
98 int find1[is_same<find<unsigned_inttypes, int>::type, nil>::value? 1 : -1];
  /prebuilts/go/darwin-x86/src/runtime/cgo/
libcgo.h 9 #define nil ((void*)0) macro
  /prebuilts/go/linux-x86/src/runtime/cgo/
libcgo.h 9 #define nil ((void*)0) macro
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTreeAdaptor.as 18 public function nil():Object { function
82 /** If oldRoot is a nil root, just copy or move the children to newRoot.
83 * If not a nil root, make oldRoot a child of newRoot.
85 * old=^(nil a b c), new=r yields ^(r a b c)
88 * If newRoot is a nil-rooted single child tree, use the single
91 * old=^(nil a b c), new=^(nil r) yields ^(r a b c)
92 * old=^(a b c), new=^(nil r) yields ^(r ^(a b c))
97 * old=null, new=^(nil r) yields ^(nil r
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeAdaptor.java 62 /** Return a nil node (an empty but non-null node) that can hold
64 * use "t=adaptor.nil(); t.addChild(x); t.addChild(y);"
66 public Object nil(); method in interface:TreeAdaptor
84 /** Is tree considered a nil node used to make lists of child nodes? */
96 /** If oldRoot is a nil root, just copy or move the children to newRoot.
97 * If not a nil root, make oldRoot a child of newRoot.
99 * old=^(nil a b c), new=r yields ^(r a b c)
102 * If newRoot is a nil-rooted single child tree, use the single
105 * old=^(nil a b c), new=^(nil r) yields ^(r a b c
    [all...]
BaseTreeAdaptor.java 46 public Object nil() { method in class:BaseTreeAdaptor
111 /** If oldRoot is a nil root, just copy or move the children to newRoot.
112 * If not a nil root, make oldRoot a child of newRoot.
114 * old=^(nil a b c), new=r yields ^(r a b c)
117 * If newRoot is a nil-rooted single child tree, use the single
120 * old=^(nil a b c), new=^(nil r) yields ^(r a b c)
121 * old=^(a b c), new=^(nil r) yields ^(r ^(a b c))
126 * old=null, new=^(nil r) yields ^(nil r
    [all...]
  /external/clang/test/ARCMT/
Common.h 12 #define nil ((void*) 0) macro
  /external/clang/test/Sema/
conditional-expr.c 87 #define nil ((void*) 0) macro
93 return a ? f1() : nil; // expected-warning {{pointer/integer type mismatch in conditional expression ('int' and 'void *')}} expected-warning {{incompatible pointer to integer conversion returning 'void *' from a function with result type 'int'}}
  /external/strace/tests/
pread64-pwrite64.c 135 char *nil = tail_alloc(1); local
136 *nil = '\0';
168 rc = pwrite(1, nil, 1, -3);
  /external/strace/tests-m32/
pread64-pwrite64.c 135 char *nil = tail_alloc(1); local
136 *nil = '\0';
168 rc = pwrite(1, nil, 1, -3);
  /external/strace/tests-mx32/
pread64-pwrite64.c 135 char *nil = tail_alloc(1); local
136 *nil = '\0';
168 rc = pwrite(1, nil, 1, -3);
  /prebuilts/go/darwin-x86/test/
rename.go 40 nil +
86 nil = 23
85 nil = 23 const
rename1.go 44 nil = 23
43 nil = 23 const
  /prebuilts/go/linux-x86/test/
rename.go 40 nil +
86 nil = 23
85 nil = 23 const
rename1.go 44 nil = 23
43 nil = 23 const
  /external/emma/core/java12/com/vladium/emma/report/
IItemAttribute.java 180 final double nil = il.getAggregate (m_numeratorAggregateID); local
186 final double diff = nil * dig - nig * dil;
  /prebuilts/go/darwin-x86/src/builtin/
builtin.go 70 // not nil. Values of string type are immutable.
99 // nil is a predeclared identifier representing the zero value for a
101 var nil Type // Type must be a pointer, channel, func, interface, map, or slice type var
144 // (m[key]) from the map. If m is nil or there is no such element, delete
150 // Pointer to array: the number of elements in *v (even if v is nil).
151 // Slice, or map: the number of elements in v; if v is nil, len(v) is zero.
154 // if v is nil, len(v) is zero.
161 // if v is nil, cap(v) is zero.
163 // if v is nil, cap(v) is zero.
235 // panicking, or if the argument supplied to panic was nil, recover return
    [all...]
  /prebuilts/go/linux-x86/src/builtin/
builtin.go 70 // not nil. Values of string type are immutable.
99 // nil is a predeclared identifier representing the zero value for a
101 var nil Type // Type must be a pointer, channel, func, interface, map, or slice type var
144 // (m[key]) from the map. If m is nil or there is no such element, delete
150 // Pointer to array: the number of elements in *v (even if v is nil).
151 // Slice, or map: the number of elements in v; if v is nil, len(v) is zero.
154 // if v is nil, len(v) is zero.
161 // if v is nil, cap(v) is zero.
163 // if v is nil, cap(v) is zero.
235 // panicking, or if the argument supplied to panic was nil, recover return
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugTreeAdaptor.java 102 public Object nil() { method in class:DebugTreeAdaptor
103 Object node = adaptor.nil();

Completed in 596 milliseconds

1 2 3