Searched refs:__null (Results 1 - 25 of 27) sorted by path

12

/external/bison/lib/
H A Dstddef.in.h67 /* GNU C++ has a __null macro that behaves like an integer ('int' or
70 # define NULL __null
/external/chromium_org/third_party/WebKit/Source/build/mac/
H A DPrefix.h31 #define NULL __null
/external/clang/lib/AST/
H A DStmtPrinter.cpp1264 OS << "__null";
/external/clang/lib/Headers/
H A Dstddef.h96 # define NULL __null
/external/clang/test/Analysis/
H A Dnullptr.cpp44 x = __null;
46 return __null;
/external/clang/test/CodeGenCXX/
H A D2010-07-23-DeclLoc.cpp63 _TEXT_text_section(0, 0, __null), _dsym_path(__null), _dylib_current_version(0), _dylib_compatibility_version(0) {}
79 extract_dwarf_data_from_header(*header, *data, (TAddressRelocator<typename SIZE_AND_ENDIANNESS::SIZE>*)__null);
H A D__null.cpp3 int* a = __null;
4 int b = __null;
7 int* c = __null;
8 int d = __null;
H A Dcxx0x-delegating-ctors.cpp98 Foo::Foo() : Foo(__null) { other(); }
/external/clang/test/FixIt/
H A Dfixit.cpp223 #define NULL __null
/external/clang/test/Headers/
H A Dms-null-ms-header-vs-stddef.cpp4 // Something in MSVC's headers (pulled in e.g. by <crtdefs.h>) defines __null
6 #define __null macro
10 // __null is used as a type annotation in MS headers, with __null defined to
13 void f(__null void* p) { }
15 // NULL should work fine even with __null defined to nothing.
/external/clang/test/Index/
H A Dcomplete-exprs.c17 #define NULL __null
/external/clang/test/Misc/
H A Ddiagnostic-crash.cpp36 wstring* s = __null;
37 util::Status* status = __null;
/external/clang/test/SemaCXX/
H A D__null.cpp5 int* i = __null;
6 i = __null;
7 int i2 = __null;
9 // Verify statically that __null is the right size
10 int a[sizeof(typeof(__null)) == sizeof(void*)? 1 : -1];
13 int b[__null ? -1 : 1];
19 (void)(0 ? __null : A()); // expected-error {{non-pointer operand type 'A' incompatible with NULL}}
20 (void)(0 ? A(): __null); // expected-error {{non-pointer operand type 'A' incompatible with NULL}}
H A Dattr-sentinel.cpp6 f(1, 2, __null);
20 S* s2 = new (1,2,3) S(1, __null); // expected-warning {{missing sentinel in function call}}
H A Dconditional-expr.cpp350 (void)(true ? __null : A()); // expected-error{{non-pointer operand type 'A' incompatible with NULL}}
H A Dconstructor-initializer.cpp239 : A(e), m_String(s) , m_ErrorStr(__null) {} // expected-error {{no matching constructor}} expected-error {{does not name}}
241 : A(e), m_String(e.m_String), m_ErrorStr(__null) { // expected-error {{does not name}} \
H A Dconversion-function.cpp291 (void) (x != __null);
H A Dformat-strings.cpp46 // Test handling __null for format string literal checking.
55 test_null_format(__null); // no-warning
H A Dmember-pointer.cpp31 pf = __null;
H A Dnew-delete.cpp472 scoped_array(C* p = __null);
482 scoped_array2(C* p = __null, C* q = __null);
H A Dnew-null.cpp12 return __null;
H A Dvararg-default-arg.cpp6 void f2(const char * = __null, ...);
H A Dwarn-loop-analysis.cpp74 for (; ptr == __null; ) {} // expected-warning {{variable 'ptr' used in loop condition not modified in loop body}}
75 for (; ptr == __null; ) { ptr = &i; }
H A Dwarn-unused-private-field.cpp215 A() : p_(__null), b_(false), a_(this), p2_(nullptr) {}
/external/clang/test/SemaTemplate/
H A Dinstantiate-expr-basic.cpp13 __null; // GNUNullExpr

Completed in 642 milliseconds

12