HomeSort by relevance Sort by last modified time
    Searched refs:nullptr (Results 76 - 100 of 2984) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/llvm/include/llvm/Transforms/Utils/
ValueMapper.h 71 ValueMapTypeRemapper *TypeMapper = nullptr,
72 ValueMaterializer *Materializer = nullptr);
76 ValueMapTypeRemapper *TypeMapper = nullptr,
77 ValueMaterializer *Materializer = nullptr);
83 ValueMapTypeRemapper *TypeMapper = nullptr,
84 ValueMaterializer *Materializer = nullptr) {
90 ValueMapTypeRemapper *TypeMapper = nullptr,
91 ValueMaterializer *Materializer = nullptr) {
  /external/llvm/unittests/Support/
ThreadLocalTest.cpp 28 EXPECT_EQ(nullptr, x.get());
35 EXPECT_EQ(nullptr, x.get());
ManagedStatic.cpp 28 return nullptr;
51 pthread_create(&t1, &a1, test1::helper, nullptr);
52 pthread_create(&t2, &a2, test1::helper, nullptr);
53 pthread_join(t1, nullptr);
54 pthread_join(t2, nullptr);
  /ndk/sources/cxx-stl/gabi++/tests/
catch_member_pointer_nullptr.cpp 27 throw nullptr;
43 throw nullptr;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/
default.pass.cpp 23 assert(s.str() == nullptr);
28 assert(s.str() == nullptr);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
nullptr.pass.cpp 38 std::unique_ptr<int[]> p(nullptr);
42 std::unique_ptr<int[], Deleter> p(nullptr);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
nullptr.pass.cpp 38 std::unique_ptr<int> p(nullptr);
42 std::unique_ptr<int, Deleter> p(nullptr);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.pair/
U_V.pass.cpp 25 P p(std::unique_ptr<int>(new int(3)), nullptr); local
27 assert(p.second == nullptr);
default.pass.cpp 25 assert(p.second == nullptr);
33 static_assert(p.second == nullptr, "");
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
catch_member_pointer_nullptr.cpp 27 throw nullptr;
43 throw nullptr;
  /art/compiler/dex/
post_opt_passes.cc 27 DCHECK(data != nullptr);
29 DCHECK(c_unit != nullptr);
40 DCHECK(data != nullptr);
43 DCHECK(c_unit != nullptr);
45 DCHECK(bb != nullptr);
53 DCHECK(data != nullptr);
56 DCHECK(c_unit != nullptr);
58 DCHECK(bb != nullptr);
61 while (mir != nullptr) {
78 DCHECK(data != nullptr);
    [all...]
post_opt_passes.h 38 DCHECK(data != nullptr);
40 DCHECK(c_unit != nullptr);
94 DCHECK(data != nullptr);
96 DCHECK(c_unit != nullptr);
111 DCHECK(data != nullptr);
113 DCHECK(c_unit != nullptr);
119 DCHECK(data != nullptr);
121 DCHECK(c_unit != nullptr);
139 DCHECK(data != nullptr);
141 DCHECK(c_unit != nullptr);
    [all...]
  /external/llvm/lib/CodeGen/
RegAllocBase.h 69 : TRI(nullptr), MRI(nullptr), VRM(nullptr), LIS(nullptr), Matrix(nullptr) {}
  /external/llvm/lib/Transforms/ObjCARC/
ARCRuntimeEntryPoints.h 46 ARCRuntimeEntryPoints() : TheModule(nullptr),
47 AutoreleaseRV(nullptr),
48 Release(nullptr),
49 Retain(nullptr),
50 RetainBlock(nullptr),
51 Autorelease(nullptr),
52 StoreStrong(nullptr),
53 RetainRV(nullptr),
54 RetainAutorelease(nullptr),
55 RetainAutoreleaseRV(nullptr) { }
    [all...]
  /system/core/libnativebridge/
native_bridge.cc 78 static void* native_bridge_handle = nullptr;
81 static NativeBridgeCallbacks* callbacks = nullptr;
83 static const NativeBridgeRuntimeCallbacks* runtime_callbacks = nullptr;
86 static char* app_data_dir = nullptr;
132 return cb != nullptr && cb->version == kNativeBridgeCallbackVersion;
142 if (nb_library_filename != nullptr) { // Avoids some log-spam for dalvikvm.
151 if (nb_library_filename == nullptr || *nb_library_filename == 0) {
161 if (handle != nullptr) {
164 if (callbacks != nullptr) {
169 callbacks = nullptr;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
ImageData.cpp 44 return nullptr;
55 return nullptr;
59 return nullptr;
68 return nullptr;
72 return nullptr;
80 return nullptr;
92 return nullptr;
96 return nullptr;
100 return nullptr;
106 return nullptr;
    [all...]
  /art/runtime/
jni_internal_test.cc 38 vm_->AttachCurrentThread(&env_, nullptr);
42 CHECK(aioobe.get() != nullptr);
46 CHECK(ase.get() != nullptr);
51 CHECK(sioobe.get() != nullptr);
58 EXPECT_NE(nullptr, exception);
64 EXPECT_NE(env_->FindClass(name), nullptr) << name;
69 EXPECT_EQ(env_->FindClass(name), nullptr) << name;
75 if (aioobe_ != nullptr) {
77 aioobe_ = nullptr;
79 if (ase_ != nullptr) {
880 env_->NewObjectArray(std::numeric_limits<jint>::min(), element_class, nullptr); local
    [all...]
  /external/clang/include/clang/CodeGen/
CodeGenAction.h 36 CodeGenAction(unsigned _Act, llvm::LLVMContext *_VMContext = nullptr);
68 EmitAssemblyAction(llvm::LLVMContext *_VMContext = nullptr);
74 EmitBCAction(llvm::LLVMContext *_VMContext = nullptr);
80 EmitLLVMAction(llvm::LLVMContext *_VMContext = nullptr);
86 EmitLLVMOnlyAction(llvm::LLVMContext *_VMContext = nullptr);
92 EmitCodeGenOnlyAction(llvm::LLVMContext *_VMContext = nullptr);
98 EmitObjAction(llvm::LLVMContext *_VMContext = nullptr);
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1-11.cpp 4 typedef decltype(nullptr) nullptr_t;
13 constexpr std::nullptr_t get_nullptr() { return nullptr; }
15 constexpr std::nullptr_t np = nullptr;
23 IP<nullptr> ip2;
41 PM<nullptr> pm2;
52 PMF<nullptr> pmf2;
62 NP<nullptr> np1;
  /external/libcxx/src/
debug.cpp 71 : __cbeg_(nullptr),
72 __cend_(nullptr),
74 __ibeg_(nullptr),
75 __iend_(nullptr),
86 if (*p != nullptr)
98 if (*p != nullptr)
113 _LIBCPP_ASSERT(i != nullptr, "iterator not found in debug database.");
114 return i->__c_ != nullptr ? i->__c_->__c_ : nullptr;
125 if (c == nullptr)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
debug.cpp 73 : __cbeg_(nullptr),
74 __cend_(nullptr),
76 __ibeg_(nullptr),
77 __iend_(nullptr),
88 if (*p != nullptr)
100 if (*p != nullptr)
117 _LIBCPP_ASSERT(i != nullptr, "iterator not found in debug database.");
118 return i->__c_ != nullptr ? i->__c_->__c_ : nullptr;
131 if (c == nullptr)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSFontFaceSource.cpp 37 : m_face(nullptr)
49 return nullptr;
60 RefPtr<SimpleFontData>& fontData = m_fontDataTable.add(key.hash(), nullptr).storedValue->value;
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
OpenTypeSanitizer.cpp 44 return nullptr;
49 return nullptr;
63 return nullptr;
  /external/libcxx/test/language.support/support.exception/propagation/
make_exception_ptr.pass.cpp 41 assert(p != nullptr);
42 p = nullptr;
43 assert(p == nullptr);
rethrow_exception.pass.cpp 49 assert(p != nullptr);
50 p = nullptr;
51 assert(p == nullptr);

Completed in 1181 milliseconds

1 2 34 5 6 7 8 91011>>