Searched refs:__null (Results 1 – 25 of 26) sorted by relevance
12
/external/clang/test/SemaCXX/ |
D | __null.cpp | 5 int* i = __null; in f() 6 i = __null; in f() 7 int i2 = __null; in f() 10 int a[sizeof(typeof(__null)) == sizeof(void*)? 1 : -1]; in f() 13 int b[__null ? -1 : 1]; in f() 19 …(void)(0 ? __null : A()); // expected-error {{non-pointer operand type 'A' incompatible with NULL}} in g() 20 (void)(0 ? A(): __null); // expected-error {{non-pointer operand type 'A' incompatible with NULL}} in g()
|
D | new-delete.cpp | 472 scoped_array(C* p = __null); 482 scoped_array2(C* p = __null, C* q = __null);
|
D | vararg-default-arg.cpp | 6 void f2(const char * = __null, ...);
|
D | constructor-initializer.cpp | 251 …: A(e), m_String(s) , m_ErrorStr(__null) {} // expected-error {{no matching constructor}} expected… in B() 253 : A(e), m_String(e.m_String), m_ErrorStr(__null) { // expected-error {{does not name}} \ in B()
|
D | new-null.cpp | 12 return __null; in operator new[]()
|
D | warn-loop-analysis.cpp | 74 …for (; ptr == __null; ) {} // expected-warning {{variable 'ptr' used in loop condition not modifie… in test2() 75 for (; ptr == __null; ) { ptr = &i; } in test2()
|
D | format-strings.cpp | 55 test_null_format(__null); // no-warning in rdar8269537()
|
D | warn-unused-private-field.cpp | 215 A() : p_(__null), b_(false), a_(this), p2_(nullptr) {} in A()
|
D | conversion-function.cpp | 289 (void) (x != __null); in test()
|
D | member-pointer.cpp | 38 pf = __null; in f()
|
D | conditional-expr.cpp | 350 …(void)(true ? __null : A()); // expected-error{{non-pointer operand type 'A' incompatible with NUL… in f()
|
/external/clang/test/CodeGenCXX/ |
D | __null.cpp | 3 int* a = __null; 4 int b = __null; 7 int* c = __null; in f() 8 int d = __null; in f()
|
D | 2010-07-23-DeclLoc.cpp | 64 …_TEXT_text_section(0, 0, __null), _dsym_path(__null), _dylib_current_version(0), _dylib_compatibil… in TRawSymbolOwnerData() 80 …f_data_from_header(*header, *data, (TAddressRelocator<typename SIZE_AND_ENDIANNESS::SIZE>*)__null); in create_symbol_owner_data_arch_specific()
|
D | cxx0x-delegating-ctors.cpp | 98 Foo::Foo() : Foo(__null) { other(); } in Foo()
|
/external/clang/test/Headers/ |
D | ms-null-ms-header-vs-stddef.cpp | 6 #define __null macro 13 void f(__null void* p) { } in f()
|
/external/clang/test/Misc/ |
D | diagnostic-crash.cpp | 36 wstring* s = __null; in Foo() 37 util::Status* status = __null; in Foo()
|
/external/clang/test/Analysis/ |
D | nullptr.cpp | 46 x = __null; in pr10372() 48 return __null; in pr10372()
|
D | CFContainers.mm | 95 #define NULL __null
|
/external/clang/test/SemaTemplate/ |
D | instantiate-expr-basic.cpp | 13 __null; // GNUNullExpr in f()
|
/external/clang/test/Index/ |
D | complete-exprs.c | 17 #define NULL __null
|
/external/bison/lib/ |
D | stddef.in.h | 70 # define NULL __null
|
/external/clang/test/SemaObjCXX/ |
D | null_objc_pointer.mm | 3 #define NULL __null
|
/external/clang/lib/Headers/ |
D | stddef.h | 100 # define NULL __null
|
/external/clang/test/FixIt/ |
D | fixit.cpp | 223 #define NULL __null
|
/external/clang/include/clang/Basic/ |
D | TokenKinds.def | 370 KEYWORD(__null , KEYCXX)
|
12