HomeSort by relevance Sort by last modified time
    Searched full:nullptr (Results 251 - 275 of 3657) sorted by null

<<11121314151617181920>>

  /external/pdfium/fpdfsdk/src/
fpdftext_embeddertest.cpp 34 EXPECT_NE(nullptr, page);
37 EXPECT_NE(nullptr, textpage);
143 EXPECT_NE(nullptr, page);
146 EXPECT_NE(nullptr, textpage);
156 EXPECT_NE(nullptr, search);
173 EXPECT_NE(nullptr, search);
208 EXPECT_NE(nullptr, search);
216 EXPECT_NE(nullptr, search);
250 EXPECT_NE(nullptr, page);
253 EXPECT_NE(nullptr, textpage)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/
tuple_cat.pass.cpp 110 assert(std::get<0>(t3) == nullptr);
118 assert(std::get<1>(t3) == nullptr);
124 assert(std::get<0>(t3) == nullptr);
134 assert(std::get<2>(t3) == nullptr);
137 std::tuple<int*, MoveOnly> t1(nullptr, 1);
141 assert(std::get<0>(t3) == nullptr);
147 std::tuple<int*, MoveOnly> t1(nullptr, 1);
153 assert(std::get<2>(t3) == nullptr);
158 std::tuple<int*, MoveOnly> t2(nullptr, 4);
163 assert(std::get<2>(t3) == nullptr);
    [all...]
  /art/runtime/
common_runtime_test.cc 69 CHECK_NE(static_cast<char*>(nullptr), getenv("ANDROID_DATA")) <<
87 CHECK(file != nullptr);
101 if (file_.get() != nullptr) {
131 if (android_root_from_env == nullptr) {
134 if (android_host_out != nullptr) {
140 if (android_build_top != nullptr) {
144 char* cwd = getcwd(nullptr, 0);
162 if (getenv("ANDROID_HOST_OUT") == nullptr) {
172 if (tmpdir != nullptr && tmpdir[0] != 0) {
181 if (mkdtemp(&android_data[0]) == nullptr) {
    [all...]
reflection.cc 101 if (receiver != nullptr) {
137 if (receiver != nullptr) {
220 if (receiver != nullptr) {
225 if (((shorty_[i] == 'L') && (arg != nullptr)) || ((arg == nullptr && shorty_[i] != 'L'))) {
228 if (UNLIKELY(arg == nullptr || !arg->InstanceOf(dst_class))) {
240 if (LIKELY(arg != nullptr && arg->GetClass<>()->DescriptorEquals(match_descriptor))) { \
245 } else if (LIKELY(arg != nullptr && \
348 if (params == nullptr) {
362 if (param_type == nullptr) {
    [all...]
art_field.cc 34 declaring_class_ = GcRoot<mirror::Class>(nullptr);
51 DCHECK(klass != nullptr);
59 return (klass->GetSuperClass() != nullptr) ?
60 FindInstanceFieldWithOffset(klass->GetSuperClass(), field_offset) : nullptr;
64 DCHECK(klass != nullptr);
71 return nullptr;
  /art/runtime/gc/space/
large_object_space_test.cc 39 LargeObjectSpace* los = nullptr;
43 los = space::FreeListSpace::Create("large object space", nullptr, 128 * MB);
55 mirror::Object* obj = los->Alloc(self, request_size, &allocation_size, nullptr,
57 ASSERT_TRUE(obj != nullptr);
58 ASSERT_EQ(allocation_size, los->AllocationSize(obj, nullptr));
105 mirror::Object* obj = los->Alloc(self, 100 * MB, &bytes_allocated, nullptr,
107 EXPECT_TRUE(obj != nullptr);
124 mirror::Object* ptr = los_->Alloc(self, size_, &alloc_size, nullptr,
146 LargeObjectSpace* los = nullptr;
150 los = space::FreeListSpace::Create("large object space", nullptr, 128 * MB)
    [all...]
image_space.cc 52 DCHECK(live_bitmap != nullptr);
95 if (cache_dir == nullptr) {
100 for (struct dirent* de = readdir(cache_dir); de != nullptr; de = readdir(cache_dir)) {
135 if (file.get() == nullptr) {
138 if (file.get() == nullptr) {
276 if (image_file.get() == nullptr) {
337 return nullptr;
346 if (image_header == nullptr) {
370 return nullptr;
375 return nullptr;
    [all...]
dlmalloc_space.cc 43 CHECK(mspace != nullptr);
50 DCHECK(mem_map != nullptr);
52 if (mspace == nullptr) {
54 return nullptr;
95 if (mem_map == nullptr) {
98 return nullptr;
117 if (msp != nullptr) {
142 if (result != nullptr) {
168 CHECK(ptr != nullptr);
171 const size_t bytes_freed = AllocationSizeNonvirtual(ptr, nullptr);
    [all...]
rosalloc_space-inl.h 56 if (usable_size != nullptr) {
76 if (LIKELY(result != nullptr)) {
81 DCHECK(bytes_allocated != nullptr);
84 if (usable_size != nullptr) {
87 DCHECK(bytes_tl_bulk_allocated != nullptr);
99 DCHECK(bytes_allocated != nullptr);
  /external/boringssl/src/crypto/hmac/
hmac_test.cc 86 return nullptr;
95 if (digest == nullptr) {
110 if (nullptr == HMAC(digest, bssl::vector_data(&key), key.size(),
122 nullptr) ||
132 if (!HMAC_Init_ex(ctx.get(), nullptr, 0, digest, nullptr) ||
142 if (!HMAC_Init_ex(ctx.get(), nullptr, 0, nullptr, nullptr)) {
170 return FileTestMain(TestHMAC, nullptr, argv[1])
    [all...]
  /external/libcxx/include/experimental/
string_view 213 basic_string_view() _NOEXCEPT : __data (nullptr), __size(0) {}
230 // _LIBCPP_ASSERT(__len == 0 || __s != nullptr, "string_view::string_view(_CharT *, size_t): recieved nullptr");
306 __data = nullptr;
416 _LIBCPP_ASSERT(__s.size() == 0 || __s.data() != nullptr, "string_view::find(): recieved nullptr");
431 _LIBCPP_ASSERT(__n == 0 || __s != nullptr, "string_view::find(): recieved nullptr");
439 _LIBCPP_ASSERT(__s != nullptr, "string_view::find(): recieved nullptr");
    [all...]
  /external/llvm/lib/DebugInfo/PDB/DIA/
DIASession.cpp 33 CLSID_DiaSource, nullptr, CLSCTX_INPROC_SERVER, IID_IDiaDataSource,
80 return nullptr;
92 return nullptr;
100 if (S_OK != Session->findFile(nullptr, nullptr, nsNone, &Files))
101 return nullptr;
113 Session->findFile(RawSymbol.getDiaSymbol(), nullptr, nsNone, &Files))
114 return nullptr;
123 return nullptr;
131 return nullptr;
    [all...]
  /art/runtime/interpreter/
unstarted_runtime_test.cc 80 ShadowFrame* tmp = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, nullptr, 0);
102 ShadowFrame* tmp = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, nullptr, 0);
127 ShadowFrame* tmp = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, nullptr, 0);
152 ShadowFrame* tmp = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, nullptr, 0);
184 ShadowFrame* tmp = ShadowFrame::CreateDeoptimizedFrame(10, nullptr, nullptr, 0)
    [all...]
  /external/llvm/lib/CodeGen/
DwarfEHPrepare.cpp 58 : FunctionPass(ID), TM(nullptr), RewindFunction(nullptr), DT(nullptr),
59 TLI(nullptr) {}
62 : FunctionPass(ID), TM(TM), RewindFunction(nullptr), DT(nullptr),
63 TLI(nullptr) {}
68 RewindFunction = nullptr;
102 Value *ExnObj = nullptr;
104 LoadInst *SelLoad = nullptr;
    [all...]
  /external/pdfium/testing/
embedder_test.cpp 33 const char* g_exe_path_ = nullptr;
40 return nullptr;
45 return nullptr;
50 return nullptr;
57 return nullptr;
126 document_(nullptr),
127 form_handle_(nullptr),
128 avail_(nullptr),
129 loader_(nullptr),
131 file_contents_(nullptr) {
    [all...]
  /frameworks/rs/cpp/
RenderScript.cpp 41 dispatchTable* RS::dispatch = nullptr;
45 mDev = nullptr;
46 mContext = nullptr;
47 mErrorFunc = nullptr;
48 mMessageFunc = nullptr;
64 void *res = nullptr;
68 mContext = nullptr;
72 mDev = nullptr;
85 if (handle == nullptr) {
181 int status = pthread_create(&mMessageThreadId, nullptr, threadProc, this)
    [all...]
  /art/compiler/optimizing/
gvn.cc 68 for (Node* node = to_copy.buckets_[i]; node != nullptr; node = node->GetNext()) {
79 DCHECK(Lookup(instruction) == nullptr);
96 for (Node* node = buckets_[index]; node != nullptr; node = node->GetNext()) {
104 return nullptr;
112 for (Node* node = buckets_[index]; node != nullptr; node = node->GetNext()) {
156 Node* Dup(ArenaAllocator* allocator, Node* new_next = nullptr) {
172 Node* CloneBucket(size_t index, Node* iterator = nullptr) {
174 Node* clone_current = nullptr;
175 Node* clone_previous = nullptr;
176 Node* clone_iterator = nullptr;
    [all...]
  /bionic/tests/
dlext_test.cpp 37 ASSERT_TRUE(ptr != nullptr) << "dlerror: " << dlerror()
68 handle_ = nullptr;
71 ASSERT_TRUE(h == nullptr);
73 ASSERT_TRUE(h == nullptr);
79 if (handle_ != nullptr) {
88 handle_ = android_dlopen_ext(LIBNAME, RTLD_NOW, nullptr);
148 ASSERT_TRUE(handle_ == nullptr);
154 ASSERT_TRUE(handle_ == nullptr);
159 ASSERT_TRUE(handle_ == nullptr);
164 ASSERT_TRUE(handle_ == nullptr);
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuScriptGroup2.cpp 88 mGroup(group), mFunc(nullptr) {
124 if (p1.second.get() != nullptr) {
143 if (p1.first == 0 && p1.second.get() == nullptr) {
145 // value (fieldId being nullptr) for its first argument (argument 0)
156 mExecutable(nullptr), mScriptObj(nullptr) {
190 if (mScriptObj != nullptr && mExecutable != nullptr) {
205 rsAssert (mFunc != nullptr);
214 if (mScriptObj != nullptr) {
    [all...]
  /external/clang/tools/libclang/
IndexingContext.h 55 name = USR = nullptr;
56 attributes = nullptr;
92 attributes = nullptr;
94 declAsContainer = semanticContainer = lexicalContainer = nullptr;
103 attributes = nullptr;
105 declAsContainer = semanticContainer = lexicalContainer = nullptr;
151 /*isRedeclaration=*/D->getPreviousDecl() != nullptr,
230 IBCollInfo.objcClass = nullptr;
258 return nullptr;
339 : Ctx(nullptr), ClientData(clientData), CB(indexCallbacks)
    [all...]
  /external/clang/unittests/Basic/
FileManagerTest.cpp 81 ASSERT_TRUE(file != nullptr);
84 ASSERT_TRUE(dir != nullptr);
88 ASSERT_TRUE(file != nullptr);
91 ASSERT_TRUE(dir != nullptr);
103 EXPECT_EQ(nullptr, manager.getDirectory("virtual/dir/foo"));
104 EXPECT_EQ(nullptr, manager.getDirectory("virtual/dir"));
105 EXPECT_EQ(nullptr, manager.getDirectory("virtual"));
114 EXPECT_EQ(nullptr, manager.getDirectory("virtual/dir/foo"));
117 ASSERT_TRUE(dir != nullptr);
121 ASSERT_TRUE(dir != nullptr);
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSScriptGroupFusion.cpp 46 return nullptr;
63 if (functionName == nullptr || !functionName[0]) {
66 return nullptr;
72 return nullptr;
75 if (signature != nullptr) {
148 return nullptr;
151 const Function* firstF = getFunction(M, sources.front(), slots.front(), nullptr);
153 bccAssert (firstF != nullptr);
172 const Function* lastF = getFunction(M, sources.back(), slots.back(), nullptr);
174 bccAssert (lastF != nullptr);
    [all...]
  /art/compiler/dex/
pass_driver.h 55 DCHECK(new_pass != nullptr);
56 DCHECK(new_pass->GetName() != nullptr);
60 DCHECK(GetPass(new_pass->GetName()) == nullptr)
72 DCHECK(pass_name != nullptr);
77 if (cur_pass != nullptr) {
104 return nullptr;
  /art/runtime/gc/accounting/
heap_bitmap-inl.h 40 if (LIKELY(bitmap != nullptr)) {
54 if (LIKELY(bitmap != nullptr)) {
69 if (LIKELY(bitmap != nullptr)) {
86 if (LIKELY(bitmap != nullptr)) {
105 return nullptr;
114 return nullptr;
  /art/runtime/jit/
jit_code_cache.cc 33 MemMap* map = MemMap::MapAnonymous("jit-code-cache", nullptr, capacity,
35 if (map == nullptr) {
39 return nullptr;
78 return nullptr;
89 return nullptr; // Out of space in the data cache.
106 return nullptr;

Completed in 456 milliseconds

<<11121314151617181920>>