HomeSort by relevance Sort by last modified time
    Searched defs:NULL (Results 51 - 75 of 1005) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
warn-tautological-compare.c 16 if (b == 0) {} // expected-warning {{comparison of array 'b' equal to a null pointer is always false}}
18 if (c.x == 0) {} // expected-warning {{comparison of array 'c.x' equal to a null pointer is always false}}
20 if (0 == str) {} // expected-warning {{comparison of array 'str' equal to a null pointer is always false}}
28 } else if (array != 0) { // expected-warning {{comparison of array 'array' not equal to a null pointer is always true}}
31 if (array == 0) // expected-warning {{comparison of array 'array' equal to a null pointer is always false}}
36 #define NULL (void*)0
47 if (&pointer == NULL) {} // expected-warning {{comparison of address of 'pointer' equal to a null pointer is always false}}
49 if (&pointer != NULL) {} // expected-warning {{comparison of address of 'pointer' not equal to a null pointer is always true}
    [all...]
  /external/conscrypt/testing/src/main/java/libcore/tlswire/handshake/
CompressionMethod.java 21 public static final CompressionMethod NULL = new CompressionMethod(0, "null");
32 return NULL;
55 if (obj == null) {
  /external/e2fsprogs/intl/
libgettext.h 54 #ifndef NULL
56 # define NULL ((void *) 0)
58 # define NULL (0)
112 If DOMAINNAME is null, return the current default.
132 dgettext (NULL, Msgid)
  /external/google-tv-pairing-protocol/cpp/tests/polo/util/
certificateutiltest.cc 44 std::cerr << ERR_error_string(ERR_get_error(), NULL);
73 RSA* rsa = PEM_read_bio_RSAPrivateKey(rsa_bio, NULL, NULL, NULL);
148 RSA* rsa = RSA_generate_key(1025, RSA_F4, NULL, NULL);
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/
ICUCache.java 17 // NULL object, which may be used for a cache key
18 public static final Object NULL = new Object();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUCache.java 17 // NULL object, which may be used for a cache key
18 public static final Object NULL = new Object();
  /external/junit/src/main/java/org/junit/runner/manipulation/
Sorter.java 15 * NULL is a <code>Sorter</code> that leaves elements in an undefined order
17 public static final Sorter NULL = new Sorter(new Comparator<Description>() {
  /external/libmicrohttpd/src/microhttpd/
reason_phrase.c 30 #ifndef NULL
31 #define NULL (void*)0
34 static const char *invalid_hundred[] = { NULL };
  /external/libusb/examples/getopt/
getopt1.c 63 #ifndef NULL
64 #define NULL 0
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_texture.h 106 return NULL;
108 assert(softpipe_resource(pt)->dt == NULL);
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_scratch.c 62 NOUVEAU_BO_MAP, 0, size, NULL, bo);
83 NULL, &scratch->bo[i]);
96 nouveau_bo_ref(NULL, &scratch->bo[i]);
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
FormattingTuple.java 34 static public FormattingTuple NULL = new FormattingTuple(null);
41 this(message, null, null);
47 if (throwable == null) {
55 if (argArray == null || argArray.length == 0) {
56 throw new IllegalStateException("non-sensical empty or null argument array");
  /external/speex/libspeex/
modes_wb.c 51 #ifndef NULL
52 #define NULL 0
93 NULL,
94 NULL,
95 NULL,
97 NULL,
98 NULL,
99 NULL,
114 NULL,
115 NULL,
    [all...]
speex_header.c 43 #ifndef NULL
44 #define NULL 0
154 return NULL;
161 return NULL;
185 return NULL;
  /external/syslinux/com32/cmenu/libmenu/
com32io.h 20 #ifndef NULL
21 #define NULL ((void *)0)
  /external/tpm2/
BaseTypes.h 12 // NULL definition
14 #ifndef NULL
15 #define NULL (0)
  /external/vboot_reference/tests/
vb2_common_tests.c 94 TEST_PTR_EQ(vb2_workbuf_alloc(&wb, 33), NULL, "Workbuf alloc too big");
  /frameworks/base/core/java/android/util/
JsonToken.java 72 * A JSON {@code null}.
74 NULL,
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/include/
stdint.h 16 #ifndef NULL
17 #define NULL (void*)0x0
  /hardware/nxp/nfc/halimpl/src/include/
data_types.h 24 #ifndef NULL
25 #define NULL 0
  /libcore/support/src/test/java/libcore/tlswire/handshake/
CompressionMethod.java 24 public static final CompressionMethod NULL = new CompressionMethod(0, "null");
38 return NULL;
64 if (obj == null) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
string.h 20 #ifndef NULL
23 #define NULL 0
25 #define NULL 0LL
28 #define NULL ((void *)0)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/wrl/
internal.h 22 ::RaiseException(static_cast<DWORD>(hr), flags, 0, NULL);
  /prebuilts/misc/darwin-x86/analyzer/lib/clang/3.3/include/
stddef.h 69 #undef NULL
72 # define NULL __null
74 # define NULL 0
77 # define NULL ((void*)0)
  /prebuilts/misc/linux-x86/analyzer/lib/clang/3.3/include/
stddef.h 69 #undef NULL
72 # define NULL __null
74 # define NULL 0
77 # define NULL ((void*)0)

Completed in 501 milliseconds

1 23 4 5 6 7 8 91011>>