Searched refs:nullptr (Results 1 - 25 of 9707) sorted by relevance

1234567891011>>

/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-default.cc32 nullptr, /* collect_features */
33 nullptr, /* override_features */
34 nullptr, /* data_create */
35 nullptr, /* data_destroy */
36 nullptr, /* preprocess_text */
37 nullptr, /* postprocess_glyphs */
39 nullptr, /* decompose */
40 nullptr, /* compose */
41 nullptr, /* setup_masks */
42 nullptr, /* disable_ot
[all...]
H A Dhb-ot-shape-complex-tibetan.cc50 nullptr, /* override_features */
51 nullptr, /* data_create */
52 nullptr, /* data_destroy */
53 nullptr, /* preprocess_text */
54 nullptr, /* postprocess_glyphs */
56 nullptr, /* decompose */
57 nullptr, /* compose */
58 nullptr, /* setup_masks */
59 nullptr, /* disable_otl */
60 nullptr, /* reorder_mark
[all...]
/external/llvm/lib/Target/AMDGPU/Utils/
H A DAMDGPUAsmUtils.cpp17 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 Dnullptr_in_arithmetic_ops.cpp7 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 Dnullptr.cpp4 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 Dmerge-vtable-codegen.cpp23 b(nullptr);
/external/capstone/arch/ARM/
H A DARMGenInstrInfo.inc2815 #define nullptr 0
3194 { 0, 0, 0, 0, 0, 0|(1<<MCID_Pseudo)|(1<<MCID_Variadic)|(1<<MCID_UnmodeledSideEffects), 0x0ULL, nullptr, nullptr, nullptr,0,nullptr }, // Inst #0 = PHI
3195 { 1, 0, 0, 0, 0, 0|(1<<MCID_Pseudo)|(1<<MCID_Variadic), 0x0ULL, nullptr, nullptr, nullptr,0,nullptr }, // Inst #1 = INLINEASM
3196 { 2, 1, 0, 0, 0, 0|(1<<MCID_Pseudo)|(1<<MCID_NotDuplicable)|(1<<MCID_UnmodeledSideEffects), 0x0ULL, nullptr, nullpt
[all...]
/external/skia/src/gpu/gl/
H A DGrGLMakeNativeInterface_none.cpp10 sk_sp<const GrGLInterface> GrGLMakeNativeInterface() { return nullptr; }
12 const GrGLInterface* GrGLCreateNativeInterface() { return nullptr; }
/external/skqp/src/gpu/gl/
H A DGrGLMakeNativeInterface_none.cpp10 sk_sp<const GrGLInterface> GrGLMakeNativeInterface() { return nullptr; }
12 const GrGLInterface* GrGLCreateNativeInterface() { return nullptr; }
/external/libcxx/test/std/language.support/support.dynamic/ptr.launder/
H A Dlaunder.types.fail.cpp27 void *p = nullptr;
28 (void) std::launder(( void *) nullptr);
29 (void) std::launder((const void *) nullptr);
30 (void) std::launder(( volatile void *) nullptr);
31 (void) std::launder((const volatile void *) nullptr); // expected-error-re@new:* 4 {{static_assert failed{{.*}} "can't launder cv-void"}}
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.cmp/
H A Dcmp_nullptr.pass.cpp47 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/smartptr/unique.ptr/unique.ptr.special/
H A Dcmp_nullptr.pass.cpp47 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 Dcfwl_widgetproperties.cpp13 m_pThemeProvider(nullptr),
14 m_pParent(nullptr),
15 m_pOwner(nullptr) {}
/external/clang/test/CodeGenCXX/
H A Ddebug-info-nullptr.cpp4 decltype(nullptr) t = 0;
7 // CHECK: !DIBasicType(tag: DW_TAG_unspecified_type, name: "decltype(nullptr)")
/external/pdfium/core/fxcrt/xml/
H A Dcxml_object.cpp12 return nullptr;
16 return nullptr;
20 return nullptr;
24 return nullptr;
/external/skia/src/opts/
H A DSkBlitRow_opts_arm.cpp14 nullptr, nullptr, nullptr, nullptr,
/external/skia/src/ports/
H A DSkFontMgr_empty_factory.cpp11 // Always return nullptr, an empty SkFontMgr will be used.
12 return nullptr;
/external/skqp/src/opts/
H A DSkBlitRow_opts_arm.cpp14 nullptr, nullptr, nullptr, nullptr,
/external/skqp/src/ports/
H A DSkFontMgr_empty_factory.cpp11 // Always return nullptr, an empty SkFontMgr will be used.
12 return nullptr;
/external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
H A DMPIFunctionClassifier.h71 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 Dexception_ptr.pass.cpp22 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/pdfium/core/fpdfapi/cmaps/GB1/
H A Dcmaps_gb1.cpp15 {"GB-EUC-H", g_FXCMAP_GB_EUC_H_0, nullptr, 90, 0, FXCMAP_CMap::Range, 0},
16 {"GB-EUC-V", g_FXCMAP_GB_EUC_V_0, nullptr, 20, 0, FXCMAP_CMap::Range, -1},
17 {"GBpc-EUC-H", g_FXCMAP_GBpc_EUC_H_0, nullptr, 91, 0, FXCMAP_CMap::Range,
19 {"GBpc-EUC-V", g_FXCMAP_GBpc_EUC_V_0, nullptr, 20, 0, FXCMAP_CMap::Range,
21 {"GBK-EUC-H", g_FXCMAP_GBK_EUC_H_2, nullptr, 4071, 0, FXCMAP_CMap::Range,
23 {"GBK-EUC-V", g_FXCMAP_GBK_EUC_V_2, nullptr, 20, 0, FXCMAP_CMap::Range, -1},
24 {"GBKp-EUC-H", g_FXCMAP_GBKp_EUC_H_2, nullptr, 4070, 0, FXCMAP_CMap::Range,
26 {"GBKp-EUC-V", g_FXCMAP_GBKp_EUC_V_2, nullptr, 20, 0, FXCMAP_CMap::Range,
30 {"GBK2K-V", g_FXCMAP_GBK2K_V_5, nullptr, 41, 0, FXCMAP_CMap::Range, -1},
31 {"UniGB-UCS2-H", g_FXCMAP_UniGB_UCS2_H_4, nullptr, 1382
[all...]
/external/libcxx/test/std/experimental/language.support/support.coroutines/coroutine.handle/coroutine.handle.export/
H A Dfrom_address.fail.cpp35 H::from_address((int*)nullptr); // expected-note {{requested here}}
36 H::from_address((const void*)nullptr); // expected-note {{requested here}}
37 H::from_address((const char*)nullptr); // expected-note {{requested here}}
42 H::from_address((const char*)nullptr); // expected-note {{requested here}}
44 H::from_address((int*)nullptr); // expected-note {{requested here}}
/external/pdfium/core/fpdfapi/cmaps/Japan1/
H A Dcmaps_japan1.cpp15 {"83pv-RKSJ-H", g_FXCMAP_83pv_RKSJ_H_1, nullptr, 222, 0, FXCMAP_CMap::Range,
17 {"90ms-RKSJ-H", g_FXCMAP_90ms_RKSJ_H_2, nullptr, 171, 0, FXCMAP_CMap::Range,
19 {"90ms-RKSJ-V", g_FXCMAP_90ms_RKSJ_V_2, nullptr, 78, 0, FXCMAP_CMap::Range,
21 {"90msp-RKSJ-H", g_FXCMAP_90msp_RKSJ_H_2, nullptr, 170, 0,
23 {"90msp-RKSJ-V", g_FXCMAP_90msp_RKSJ_V_2, nullptr, 78, 0,
25 {"90pv-RKSJ-H", g_FXCMAP_90pv_RKSJ_H_1, nullptr, 263, 0, FXCMAP_CMap::Range,
27 {"Add-RKSJ-H", g_FXCMAP_Add_RKSJ_H_1, nullptr, 635, 0, FXCMAP_CMap::Range,
29 {"Add-RKSJ-V", g_FXCMAP_Add_RKSJ_V_1, nullptr, 57, 0, FXCMAP_CMap::Range,
31 {"EUC-H", g_FXCMAP_EUC_H_1, nullptr, 120, 0, FXCMAP_CMap::Range, 0},
32 {"EUC-V", g_FXCMAP_EUC_V_1, nullptr, 2
[all...]
/external/skia/src/gpu/gl/glx/
H A DGrGLMakeNativeInterface_glx.cpp21 return nullptr;
24 SkASSERT(nullptr == ctx);
30 if (nullptr == glXGetCurrentContext()) {
31 return nullptr;
34 return GrGLMakeAssembledInterface(nullptr, glx_get);

Completed in 2787 milliseconds

1234567891011>>