Searched refs:nullptr (Results 276 - 300 of 344) sorted by relevance

<<11121314

/art/runtime/base/
H A Dtiming_logger.h90 return name_ == nullptr;
/art/runtime/
H A Delf_file.h44 uint8_t* requested_base = nullptr); // TODO: move arg to before error_msg.
94 // Lookup a string given string section and offset. Returns nullptr for
151 // Find symbol in specified table, returning nullptr if it is not found.
168 // Lookup a string by section type. Returns nullptr for special 0 offset.
H A Dthread_pool.h43 DCHECK(stack_.get() != nullptr);
H A Dthread_pool.cc33 stack_.reset(MemMap::MapAnonymous(name.c_str(), nullptr, stack_size, PROT_READ | PROT_WRITE,
35 CHECK(stack_.get() != nullptr) << error_msg;
H A Dclass_linker_test.cc153 EXPECT_TRUE(direct_interface0 != nullptr);
162 EXPECT_TRUE(method != nullptr);
163 EXPECT_TRUE(method->GetClass() != nullptr);
164 EXPECT_TRUE(method->GetName() != nullptr);
205 EXPECT_TRUE(klass->GetDexCacheStrings() != nullptr);
280 FieldHelper fh(hs.NewHandle<mirror::ArtField>(nullptr));
290 ASSERT_TRUE(field_type != nullptr);
329 ASSERT_TRUE(klass.Get() != nullptr);
829 EXPECT_TRUE(MyClass_1 != nullptr);
830 EXPECT_TRUE(MyClass_2 != nullptr);
[all...]
H A Ddex_file_verifier.cc71 return nullptr;
78 return nullptr;
87 return nullptr;
94 return nullptr;
102 if (UNLIKELY(var == nullptr)) { \
109 if (UNLIKELY(var == nullptr)) { \
116 if (UNLIKELY(var == nullptr)) { \
123 if (UNLIKELY(var == nullptr)) { \
/art/runtime/entrypoints/portable/
H A Dportable_invoke_entrypoints.cc43 const void* code = nullptr;
/art/runtime/gc/accounting/
H A Dremembered_set.cc73 DCHECK(obj != nullptr);
/art/runtime/gc/collector/
H A Dgarbage_collector.cc116 if (live_bitmap != nullptr && live_bitmap != mark_bitmap) {
/art/compiler/dex/quick/
H A Dcodegen_util.cc94 if (after->next == nullptr) {
305 for (LIR* lir = first_lir_insn_; lir != nullptr; lir = lir->next) {
401 return nullptr;
514 while (data_lir != nullptr) {
1038 DCHECK(cu_->compiler_driver->GetMethodInlinerMap() != nullptr);
1102 if (cfi_info.get() != nullptr) {
1214 if (compare != nullptr) {
1262 if (data_target == nullptr) {
1273 if (data_target == nullptr) {
1283 return nullptr;
[all...]
H A Dresource_mask.cc149 const ResourceMask* res = nullptr;
170 if (res != nullptr) {
/art/compiler/dex/quick/mips/
H A Dcall_mips.cc323 : LIRSlowPath(m2l, m2l->GetCurrentDexPc(), branch, nullptr), sp_displace_(sp_displace) {
342 LIR* branch = OpCmpBranch(kCondUlt, new_sp, check_reg, nullptr);
/art/compiler/dex/
H A Dverified_method.cc52 return nullptr; // Not a real failure, but a failure to encode.
72 return (it != devirt_map_.end()) ? &it->second : nullptr;
H A Dglobal_value_numbering.h36 ScopedArenaAllocator* allocator = nullptr);
/art/runtime/arch/x86/
H A Dfault_handler_x86.cc237 CHECK(self != nullptr); // This will cause a SIGABRT if self is nullptr.
276 *out_method = nullptr;
/art/compiler/
H A Delf_writer_quick.cc75 DCHECK(data_ != nullptr || size_ == 0U) << dbg_name_ << " " << size_;
636 dynamics_.push_back({nullptr, tag, d_un});
739 // | nullptr | | 1 | | STN_UNDEF |
928 bool generateDebugInformation = compiler_driver_->GetCallFrameInformation() != nullptr;
930 ElfRawSectionBuilder debug_info(".debug_info", SHT_PROGBITS, 0, nullptr, 0, 1, 0);
931 ElfRawSectionBuilder debug_abbrev(".debug_abbrev", SHT_PROGBITS, 0, nullptr, 0, 1, 0);
932 ElfRawSectionBuilder debug_str(".debug_str", SHT_PROGBITS, 0, nullptr, 0, 1, 0);
933 ElfRawSectionBuilder eh_frame(".eh_frame", SHT_PROGBITS, SHF_ALLOC, nullptr, 0, 4, 0);
H A Dimage_writer.h162 return nullptr;
/art/compiler/optimizing/
H A Dcode_generator_x86_64.cc310 if (instruction->AsIntConstant() != nullptr) {
317 } else if (instruction->AsLongConstant() != nullptr) {
325 } else if (instruction->AsLoadLocal() != nullptr) {
363 got->SetLocations(nullptr);
376 exit->SetLocations(nullptr);
430 local->SetLocations(nullptr);
438 local->SetLocations(nullptr);
598 ret->SetLocations(nullptr);
1319 temp->SetLocations(nullptr);
H A Dcode_generator_arm.cc457 if (locations != nullptr && locations->Out().Equals(location)) {
461 if (instruction->AsIntConstant() != nullptr) {
470 } else if (instruction->AsLongConstant() != nullptr) {
482 } else if (instruction->AsLoadLocal() != nullptr) {
524 got->SetLocations(nullptr);
537 exit->SetLocations(nullptr);
682 local->SetLocations(nullptr);
690 load->SetLocations(nullptr);
742 ret->SetLocations(nullptr);
1485 temp->SetLocations(nullptr);
[all...]
H A Dcodegen_test.cc75 ASSERT_NE(graph, nullptr);
H A Dliveness_test.cc48 ASSERT_NE(graph, nullptr);
H A Dlocations.h80 DCHECK(constant != nullptr);
H A Dssa_test.cc84 ASSERT_NE(graph, nullptr);
/art/runtime/mirror/
H A Dobject-inl.h124 return nullptr;
166 DCHECK(obj->GetReadBarrierPointer() == nullptr)
658 if (new_value != nullptr) {
763 for (mirror::Class* klass = kIsStatic ? AsClass() : GetClass(); klass != nullptr;
764 klass = kIsStatic ? nullptr : klass->GetSuperClass()) {
/art/compiler/utils/
H A Darena_containers.h161 pointer allocate(size_type n, ArenaAllocatorAdapter<void>::pointer hint = nullptr) { argument

Completed in 325 milliseconds

<<11121314