HomeSort by relevance Sort by last modified time
    Searched full:__null (Results 1 - 25 of 123) sorted by null

1 2 3 4 5

  /external/clang/test/CodeGenCXX/
__null.cpp 3 int* a = __null;
4 int b = __null;
7 int* c = __null;
8 int d = __null;
2010-07-23-DeclLoc.cpp 63 _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);
  /external/clang/test/Headers/
ms-null-ms-header-vs-stddef.cpp 4 // 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/SemaCXX/
__null.cpp 5 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}}
vararg-default-arg.cpp 5 void f2(const char * = __null, ...);
attr-sentinel.cpp 6 f(1, 2, __null);
20 S* s2 = new (1,2,3) S(1, __null); // expected-warning {{missing sentinel in function call}}
format-strings.cpp 46 // Test handling __null for format string literal checking.
55 test_null_format(__null); // no-warning
constructor-initializer.cpp 239 : 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}} expected-error {{no member named 'm_String' in 'test3::B'}}
warn-loop-analysis.cpp 74 for (; ptr == __null; ) {} // expected-warning {{variable 'ptr' used in loop condition not modified in loop body}}
75 for (; ptr == __null; ) { ptr = &i; }
new-delete.cpp 465 scoped_array(C* p = __null);
475 scoped_array2(C* p = __null, C* q = __null);
warn-unused-private-field.cpp 215 A() : p_(__null), b_(false), a_(this), p2_(nullptr) {}
conversion-function.cpp 286 (void) (x != __null);
member-pointer.cpp 30 pf = __null;
  /external/clang/test/SemaTemplate/
instantiate-expr-basic.cpp 13 __null; // GNUNullExpr
  /external/clang/test/SemaObjCXX/
null_objc_pointer.mm 2 #define NULL __null
  /external/webkit/Source/JavaScriptCore/
JavaScriptCorePrefix.h 2 #define NULL __null
  /external/clang/test/Analysis/
nullptr.cpp 44 x = __null;
46 return __null;
CFContainers.mm 94 #define NULL __null
  /prebuilts/sdk/renderscript/clang-include/
stddef.h 46 #undef __null // VC++ hack. macro
47 #define NULL __null
  /external/clang/test/PCH/
exprs.c 92 //null_type null = __null;
exprs.h 100 // typedef typeof(__null) null_type;
  /external/clang/lib/Headers/
stddef.h 47 # define NULL __null
  /external/webkit/Source/WebKit/mac/
WebKitPrefix.h 30 #define NULL __null
  /external/clang/test/Index/
complete-exprs.c 17 #define NULL __null
  /external/webkit/Source/WebCore/
WebCorePrefix.h 32 #define NULL __null

Completed in 666 milliseconds

1 2 3 4 5