/external/llvm/lib/Target/AMDGPU/Utils/ |
H A D | AMDGPUAsmUtils.cpp | 17 nullptr, 21 nullptr, 22 nullptr, 23 nullptr, 24 nullptr, 25 nullptr, 26 nullptr, 27 nullptr, 28 nullptr, 29 nullptr, [all...] |
/external/clang/test/SemaCXX/ |
H A D | nullptr_in_arithmetic_ops.cpp | 7 a = 0 ? nullptr + a : a + nullptr; // expected-error 2{{invalid operands to binary expression}} 8 a = 0 ? nullptr - a : a - nullptr; // expected-error 2{{invalid operands to binary expression}} 9 a = 0 ? nullptr / a : a / nullptr; // expected-error 2{{invalid operands to binary expression}} 10 a = 0 ? nullptr * a : a * nullptr; // expected-error 2{{invalid operands to binary expression}} 11 a = 0 ? nullptr >> a : a >> nullptr; // expecte 34 a >>= nullptr; // expected-error{{invalid operands to binary expression}} local 35 a <<= nullptr; // expected-error{{invalid operands to binary expression}} local [all...] |
H A D | nullptr.cpp | 4 typedef decltype(nullptr) nullptr_t; 16 null = nullptr; 17 void *p = nullptr; 19 int *pi = nullptr; 22 int A::*pm = nullptr; 24 void (*pf)() = nullptr; 26 void (A::*pmf)() = nullptr; 28 bool b = nullptr; 30 // Can't convert nullptr to integral implicitly. 31 uintptr_t i = nullptr; // expecte [all...] |
/external/clang/test/Modules/ |
H A D | merge-vtable-codegen.cpp | 23 b(nullptr);
|
/external/skia/src/gpu/gl/ |
H A D | GrGLCreateNativeInterface_none.cpp | 11 return nullptr;
|
H A D | GrGLDefaultInterface_none.cpp | 11 return nullptr;
|
H A D | GrGLInterface.cpp | 67 if (nullptr == fFunctions.fActiveTexture || 68 nullptr == fFunctions.fAttachShader || 69 nullptr == fFunctions.fBindAttribLocation || 70 nullptr == fFunctions.fBindBuffer || 71 nullptr == fFunctions.fBindTexture || 72 nullptr == fFunctions.fBlendColor || // -> GL >= 1.4 or extension, ES >= 2.0 73 nullptr == fFunctions.fBlendEquation || // -> GL >= 1.4 or extension, ES >= 2.0 74 nullptr == fFunctions.fBlendFunc || 75 nullptr == fFunctions.fBufferData || 76 nullptr [all...] |
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.special/ |
H A D | cmp_nullptr.pass.cpp | 47 assert(!(p1 == nullptr)); 48 assert(!(nullptr == p1)); 49 assert(!(p1 < nullptr)); 50 assert( (nullptr < p1)); 51 assert(!(p1 <= nullptr)); 52 assert( (nullptr <= p1)); 53 assert( (p1 > nullptr)); 54 assert(!(nullptr > p1)); 55 assert( (p1 >= nullptr)); 56 assert(!(nullptr > [all...] |
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cmp/ |
H A D | cmp_nullptr.pass.cpp | 47 assert(!(p1 == nullptr)); 48 assert(!(nullptr == p1)); 49 assert(!(p1 < nullptr)); 50 assert( (nullptr < p1)); 51 assert(!(p1 <= nullptr)); 52 assert( (nullptr <= p1)); 53 assert( (p1 > nullptr)); 54 assert(!(nullptr > p1)); 55 assert( (p1 >= nullptr)); 56 assert(!(nullptr > [all...] |
/external/pdfium/xfa/fwl/ |
H A D | cfwl_widgetproperties.cpp | 13 m_pThemeProvider(nullptr), 14 m_pParent(nullptr), 15 m_pOwner(nullptr) {}
|
/external/clang/test/CodeGenCXX/ |
H A D | debug-info-nullptr.cpp | 4 decltype(nullptr) t = 0; 7 // CHECK: !DIBasicType(tag: DW_TAG_unspecified_type, name: "decltype(nullptr)")
|
H A D | mangle-nullptr-arg.cpp | 6 void test1(IP<nullptr>) {} 12 void test2(PM<nullptr>) { } 16 void test3(DependentTypePtr<int*,nullptr>) { }
|
H A D | nullptr.cpp | 6 int* a = nullptr; 9 int* a = nullptr; 12 typedef decltype(nullptr) nullptr_t;
|
/external/skia/src/opts/ |
H A D | SkBlitRow_opts_arm.cpp | 14 nullptr, nullptr, nullptr, nullptr,
|
/external/skia/src/ports/ |
H A D | SkFontMgr_empty_factory.cpp | 11 // Always return nullptr, an empty SkFontMgr will be used. 12 return nullptr;
|
/external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/ |
H A D | MPIFunctionClassifier.h | 71 IdentifierInfo *IdentInfo_MPI_Send = nullptr, *IdentInfo_MPI_Isend = nullptr, 72 *IdentInfo_MPI_Ssend = nullptr, *IdentInfo_MPI_Issend = nullptr, 73 *IdentInfo_MPI_Bsend = nullptr, *IdentInfo_MPI_Ibsend = nullptr, 74 *IdentInfo_MPI_Rsend = nullptr, *IdentInfo_MPI_Irsend = nullptr, 75 *IdentInfo_MPI_Recv = nullptr, *IdentInfo_MPI_Irecv = nullptr; [all...] |
/external/libcxx/test/std/language.support/support.exception/propagation/ |
H A D | exception_ptr.pass.cpp | 22 assert(p == nullptr); 24 assert(nullptr == p); 29 assert(p2 == nullptr); 30 std::exception_ptr p3 = nullptr; 31 assert(p3 == nullptr); 32 p3 = nullptr; 33 assert(p3 == nullptr);
|
/external/skia/src/gpu/gl/glx/ |
H A D | GrGLCreateNativeInterface_glx.cpp | 19 return nullptr; 22 SkASSERT(nullptr == ctx); 28 if (nullptr == glXGetCurrentContext()) { 29 return nullptr; 32 return GrGLAssembleInterface(nullptr, glx_get);
|
/external/llvm/lib/MC/ |
H A D | MCSchedule.cpp | 30 nullptr, 31 nullptr, 34 nullptr};
|
/external/pdfium/xfa/fxfa/parser/ |
H A D | cxfa_contentlayoutitem.cpp | 11 m_pPrev(nullptr), 12 m_pNext(nullptr), 17 m_pFormNode->SetUserData(XFA_LAYOUTITEMKEY, nullptr);
|
/external/llvm/include/llvm/Analysis/ |
H A D | InstructionSimplify.h | 53 const TargetLibraryInfo *TLI = nullptr, 54 const DominatorTree *DT = nullptr, 55 AssumptionCache *AC = nullptr, 56 const Instruction *CxtI = nullptr); 62 const TargetLibraryInfo *TLI = nullptr, 63 const DominatorTree *DT = nullptr, 64 AssumptionCache *AC = nullptr, 65 const Instruction *CxtI = nullptr); 71 const TargetLibraryInfo *TLI = nullptr, 72 const DominatorTree *DT = nullptr, [all...] |
/external/llvm/unittests/IR/ |
H A D | DebugTypeODRUniquingTest.cpp | 32 Context, UUID, dwarf::DW_TAG_class_type, nullptr, nullptr, 0, nullptr, 33 nullptr, 0, 0, 0, 0, nullptr, 0, nullptr, nullptr)); 41 Context, UUID, dwarf::DW_TAG_class_type, nullptr, nullptr, 0, nullptr, [all...] |
/external/clang/include/clang/Sema/ |
H A D | LoopHint.h | 39 : PragmaNameLoc(nullptr), OptionLoc(nullptr), StateLoc(nullptr), 40 ValueExpr(nullptr) {}
|
/external/clang/test/SemaTemplate/ |
H A D | instantiate-expr-basic.cpp | 12 nullptr; // CXXNullPtrLiteralExpr
|
/external/libcxx/test/std/language.support/support.types/ |
H A D | nullptr_t_integral_cast.fail.cpp | 10 // typedef decltype(nullptr) nullptr_t; 16 std::ptrdiff_t i = static_cast<std::ptrdiff_t>(nullptr);
|