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

1 2 3 4 5 6 7 8 91011>>

  /external/embunit/inc/
stdImpl.h 42 #ifndef NULL
43 #define NULL 0
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
stddef.h 5 #undef NULL
7 #define NULL 0
9 #define NULL ((void *)0)
  /bionic/libc/kernel/common/linux/
stddef.h 17 #undef NULL
19 #define NULL 0
21 #define NULL ((void *)0)
  /development/ndk/platforms/android-3/include/linux/
stddef.h 17 #undef NULL
19 #define NULL 0
21 #define NULL ((void *)0)
  /external/kernel-headers/original/linux/
stddef.h 6 #undef NULL
8 #define NULL 0
10 #define NULL ((void *)0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
stddef.h 17 #undef NULL
19 #define NULL 0
21 #define NULL ((void *)0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
stddef.h 17 #undef NULL
19 #define NULL 0
21 #define NULL ((void *)0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
stddef.h 17 #undef NULL
19 #define NULL 0
21 #define NULL ((void *)0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
stddef.h 17 #undef NULL
19 #define NULL 0
21 #define NULL ((void *)0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
stddef.h 17 #undef NULL
19 #define NULL 0
21 #define NULL ((void *)0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
stddef.h 17 #undef NULL
19 #define NULL 0
21 #define NULL ((void *)0)
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/
stddef.h 17 #undef NULL
19 #define NULL 0
21 #define NULL ((void *)0)
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/
stddef.h 17 #undef NULL
19 #define NULL 0
21 #define NULL ((void *)0)
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/
stddef.h 17 #undef NULL
19 #define NULL 0
21 #define NULL ((void *)0)
  /external/clang/test/SemaCXX/
null_in_arithmetic_ops.cpp 14 a = 0 ? NULL + a : a + NULL; // expected-warning 2{{use of NULL in arithmetic operation}}
15 a = 0 ? NULL - a : a - NULL; // expected-warning 2{{use of NULL in arithmetic operation}}
16 a = 0 ? NULL / a : a / NULL; // expected-warning 2{{use of NULL in arithmetic operation}} \
18 a = 0 ? NULL * a : a * NULL; // expected-warning 2{{use of NULL in arithmetic operation}
    [all...]
  /external/iptables/libiptc/
linux_stddef.h 4 #undef NULL
6 #define NULL 0
8 #define NULL ((void *)0)
  /external/webkit/Source/JavaScriptCore/
JavaScriptCorePrefix.h 2 #define NULL __null
4 #define NULL ((void *)0)
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
slglobals.h 74 #if !defined(NULL)
75 #define NULL 0
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_bar_instructions_gtk.cc 31 NULL);
48 NULL);
74 gtk_util::SetLabelColor(instructions_label_, NULL);
76 GTK_CHROME_LINK_BUTTON(instructions_link_), NULL);
87 GTK_CHROME_LINK_BUTTON(instructions_link_), NULL);
  /external/clang/test/Headers/
typedef_guards.c 3 // NULL is rdefined in stddef.h
4 #define NULL ((void*) 0)
24 void *baz() { return NULL; }
  /external/dropbear/libtomcrypt/demos/
multi.c 18 hash_memory_multi(find_hash("sha256"), buf[1], &len2, (unsigned char*)"hello", 5, NULL);
24 hash_memory_multi(find_hash("sha256"), buf[1], &len2, (unsigned char*)"he", 2UL, "llo", 3UL, NULL, 0);
30 hash_memory_multi(find_hash("sha256"), buf[1], &len2, (unsigned char*)"h", 1UL, "e", 1UL, "l", 1UL, "l", 1UL, "o", 1UL, NULL);
40 hmac_memory_multi(find_hash("sha256"), key, 16, buf[1], &len2, (unsigned char*)"hello", 5UL, NULL);
46 hmac_memory_multi(find_hash("sha256"), key, 16, buf[1], &len2, (unsigned char*)"he", 2UL, "llo", 3UL, NULL);
52 hmac_memory_multi(find_hash("sha256"), key, 16, buf[1], &len2, (unsigned char*)"h", 1UL, "e", 1UL, "l", 1UL, "l", 1UL, "o", 1UL, NULL);
62 omac_memory_multi(find_cipher("aes"), key, 16, buf[1], &len2, (unsigned char*)"hello", 5UL, NULL);
68 omac_memory_multi(find_cipher("aes"), key, 16, buf[1], &len2, (unsigned char*)"he", 2UL, "llo", 3UL, NULL);
74 omac_memory_multi(find_cipher("aes"), key, 16, buf[1], &len2, (unsigned char*)"h", 1UL, "e", 1UL, "l", 1UL, "l", 1UL, "o", 1UL, NULL);
84 pmac_memory_multi(find_cipher("aes"), key, 16, buf[1], &len2, (unsigned char*)"hello", 5, NULL);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/include/
begin_code.h 149 #ifndef NULL
151 #define NULL 0
153 #define NULL ((void *)0)
155 #endif /* NULL */
  /external/valgrind/main/VEX/priv/
main_util.h 44 #define NULL ((void*)0)
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
11.2.2-3-n.js 75 var NULL = null;
78 "NULL = null; var o = new NULL()",
80 o = new NULL() );
  /external/webkit/Source/WebKit/gtk/tests/
testwebsettings.c 41 userAgent = NULL;
42 g_object_set(G_OBJECT(settings), "user-agent", "testwebsettings/0.1", NULL);
43 g_object_get(G_OBJECT(settings),"user-agent", &userAgent, NULL);
47 // setting it to NULL or an empty value should give us the default UA string
48 userAgent = NULL;
49 g_object_set(G_OBJECT(settings), "user-agent", NULL, NULL);
50 g_object_get(G_OBJECT(settings),"user-agent", &userAgent, NULL);
54 userAgent = NULL;
55 g_object_set(G_OBJECT(settings), "user-agent", "", NULL);
    [all...]

Completed in 1611 milliseconds

1 2 3 4 5 6 7 8 91011>>