Searched defs:NULL (Results 1 - 25 of 437) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dvariadic-null-win64.c4 // Make it possible to pass NULL through variadic functions on platforms where
5 // NULL has an integer type that is more narrow than a pointer. On such
8 #define NULL 0 macro
12 v(f, 1, 2, 3, NULL);
/external/embunit/inc/
H A DstdImpl.h42 #ifndef NULL
43 #define NULL 0 macro
/external/clang/test/SemaCXX/
H A Dnull_in_arithmetic_ops.cpp14 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 *
59 a >>= NULL; // expected-warning{{use of NULL in arithmetic operation}} local
60 a <<= NULL; // expected-warning{{use of NULL in arithmetic operation}} local
[all...]
/external/iptables/libiptc/
H A Dlinux_stddef.h4 #undef NULL macro
6 #define NULL 0 macro
8 #define NULL ((void *)0) macro
/external/skia/debugger/QT/
H A DSkListWidget.h26 SkListWidget(QObject* parent = NULL) {} argument
/external/clang/test/Headers/
H A Dtypedef_guards.c4 // NULL is rdefined in stddef.h
5 #define NULL ((void*) 0) macro
25 void *baz() { return NULL; }
/external/clang/test/PCH/
H A Dmacro-undef.cpp8 #define NULL 0 macro
14 #undef NULL macro
25 // CHECK: fix-it:"{{.*}}":{11:10-11:10}:" = NULL"
/external/clang/test/Analysis/
H A Dkmalloc-linux.c6 #define NULL ((void *)0) macro
20 if (list == NULL)
35 if (list == NULL)
50 if (list == NULL)
H A Dmalloc-three-arg.c6 #define NULL ((void *)0) macro
19 list = malloc(sizeof(*list) * 10, NULL, M_ZERO);
20 if (list == NULL)
34 list = malloc(sizeof(*list) * 10, NULL, 0);
35 if (list == NULL)
49 list = malloc(sizeof(*list) * 10, NULL, flags);
50 if (list == NULL)
H A Dunix-api.c7 #ifndef NULL
8 #define NULL ((void*) 0) macro
24 fd = open(path, O_RDONLY, mode, NULL); // expected-warning{{Call to 'open' with more than three arguments}}
31 fd = open(path, O_RDONLY, NULL); // expected-warning{{Third argument to 'open' is not an integer}}
/external/clang/test/Sema/
H A Dattr-sentinel.c3 #define NULL (void*)0 macro
17 foo1(1, NULL); // OK
19 foo5(1, NULL, 2); // OK
20 foo5(1,2,NULL, 1); // OK
21 foo5(1, NULL, 2, 1); // expected-warning {{missing sentinel in function call}}
24 foo6(1,NULL,3,4,5,6,7); // OK
26 foo7(1, NULL); // OK
/external/skia/include/effects/
H A DSkBlurImageFilter.h18 SkImageFilter* input = NULL,
19 const CropRect* cropRect = NULL) {
16 Create(SkScalar sigmaX, SkScalar sigmaY, SkImageFilter* input = NULL, const CropRect* cropRect = NULL) argument
H A DSkOffsetImageFilter.h18 static SkOffsetImageFilter* Create(SkScalar dx, SkScalar dy, SkImageFilter* input = NULL, argument
19 const CropRect* cropRect = NULL) {
21 return NULL;
H A DSkTestImageFilters.h10 static SkDownSampleImageFilter* Create(SkScalar scale, SkImageFilter* input = NULL) { argument
12 return NULL;
16 return NULL;
H A DSkXfermodeImageFilter.h19 * over the background. If foreground or background is NULL, the input
27 SkImageFilter* foreground = NULL,
28 const CropRect* cropRect = NULL) {
26 Create(SkXfermode* mode, SkImageFilter* background, SkImageFilter* foreground = NULL, const CropRect* cropRect = NULL) argument
/external/skia/src/core/
H A DSkMatrixImageFilter.h27 * @param input The input image filter. If NULL, the src bitmap
33 SkImageFilter* input = NULL);
37 SkImageFilter* input = NULL) {
35 Create(const SkMatrix& transform, SkPaint::FilterLevel level, SkImageFilter* input = NULL) argument
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/spi/
H A DConfigurator.java32 value of this string constant is <b>inherited</b>. {@link #NULL}
40 public static final String NULL = "null"; field in interface:Configurator
/external/bison/lib/
H A Dgetopt1.c36 #ifndef NULL macro
37 #define NULL 0
/external/clang/test/FixIt/
H A Dfixit-vexing-parse.cpp95 #define NULL 0 macro
96 // CHECK: fix-it:"{{.*}}":{97:10-97:12}:" = NULL"
/external/clang/test/Index/
H A Dcomplete-exprs.c17 #define NULL __null macro
19 f3(str, NULL);
57 // CHECK-CC6: FunctionDecl:{ResultType void}{TypedText f3}{LeftParen (}{Placeholder const char *, ...}{Text , NULL}{RightParen )} (50)
66 // CHECK-CC7: FunctionDecl:{ResultType void}{TypedText f3}{LeftParen (}{Placeholder const char *, ...}{Text , NULL}{RightParen )} (50)
/external/conscrypt/src/compat/native/
H A DScopedLocalRef.h35 void reset(T ptr = NULL) { argument
37 if (mLocalRef != NULL) {
46 mLocalRef = NULL;
/external/e2fsprogs/intl/
H A Dlibgettext.h54 #ifndef NULL
56 # define NULL ((void *) 0) macro
58 # define NULL (0) macro
132 dgettext (NULL, Msgid)
/external/easymock/src/org/easymock/internal/matchers/
H A DNull.java26 public static final Null NULL = new Null(); field in class:Null
/external/google-tv-pairing-protocol/cpp/tests/polo/util/
H A Dcertificateutiltest.cc44 std::cerr << ERR_error_string(ERR_get_error(), NULL); local
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/icu4c/source/samples/case/
H A Dcase.cpp27 out = u_finit(stdout, NULL, NULL);
33 NULL, NULL, NULL, &status); local

Completed in 832 milliseconds

1234567891011>>