Searched refs:nullptr (Results 226 - 250 of 344) sorted by relevance

1234567891011>>

/art/compiler/utils/
H A Dswap_space.h164 pointer allocate(size_type n, SwapAllocator<void>::pointer hint = nullptr) { argument
166 if (swap_space_ == nullptr) {
173 if (swap_space_ == nullptr) {
/art/runtime/mirror/
H A Dobject.cc42 Atomic<uint32_t> Object::hash_code_seed(987654321U + std::time(nullptr));
183 DCHECK(monitor != nullptr);
202 if (runtime->GetClassLinker() == nullptr || !runtime->IsStarted() ||
H A Darray-inl.h139 return nullptr;
155 if (kIsDebugBuild && result != nullptr && Runtime::Current()->IsStarted()) {
252 DCHECK(src != nullptr);
312 DCHECK(src != nullptr);
/art/runtime/
H A Doat_file.h79 CHECK_NE(reinterpret_cast<uintptr_t>(elf_file_.get()), reinterpret_cast<uintptr_t>(nullptr))
105 return nullptr;
111 return nullptr;
190 // method_index, or nullptr if none is present. Note that most
352 // for GetOatDexFile() for a very frequent use case. Never contains a nullptr value.
H A Dprofiler.h56 StackTrieNode() : parent_(nullptr), method_(nullptr, 0),
136 PreviousValue() : count_(0), method_size_(0), context_map_(nullptr) {}
H A Ddex_file_test.cc76 return nullptr;
81 return nullptr;
97 return nullptr;
100 if (dst_size != nullptr) {
361 UniqueCPtr<const char[]> dex_location_real(realpath(file.GetFilename().c_str(), nullptr));
H A Dtransaction.cc62 DCHECK(obj != nullptr);
70 DCHECK(obj != nullptr);
78 DCHECK(obj != nullptr);
85 DCHECK(array != nullptr);
321 if (obj != nullptr) {
330 DCHECK(intern_table != nullptr);
378 DCHECK(array != nullptr);
H A Dparsed_options.cc38 return nullptr;
228 compiler_callbacks_ = nullptr;
285 Usage(nullptr);
525 if (hook == nullptr) {
533 if (hook == nullptr) {
540 if (hook == nullptr) {
696 if (compiler_callbacks_ == nullptr && image_.empty()) {
729 bool error = (fmt != nullptr);
732 if (fmt != nullptr) {
913 char* end = nullptr;
[all...]
H A Doat.cc30 if (variable_data != nullptr) {
435 return nullptr;
476 return (pic_string != nullptr && strncmp(pic_string, kTrue, sizeof(kTrue)) == 0);
481 if (key_value_store != nullptr) {
H A Dutils.cc370 if (m == nullptr) {
521 const char* unit = nullptr;
1068 if (current_method != nullptr) {
1102 } else if (current_method != nullptr && current_method->IsWithinQuickCode(it->pc)) {
1179 if (dir != nullptr) {
1194 return nullptr;
1199 return nullptr;
1206 CHECK(subdir != nullptr);
1209 if (android_data == nullptr) {
1229 CHECK(subdir != nullptr);
[all...]
/art/compiler/
H A Doat_writer.cc95 CHECK(key_value_store != nullptr);
211 dex_file_(nullptr),
216 DCHECK(dex_file_ == nullptr);
227 dex_file_ = nullptr;
300 if (compiled_method != nullptr) {
341 if (compiled_method != nullptr) {
347 if (portable_code != nullptr) {
348 CHECK(quick_code == nullptr);
354 CHECK(quick_code != nullptr);
413 if (cfi_info != nullptr) {
[all...]
/art/compiler/dex/quick/
H A Dralloc_util.cc43 s_reg_(INVALID_SREG), def_use_mask_(mask), master_(this), def_start_(nullptr),
44 def_end_(nullptr), alias_chain_(nullptr) {
78 m2l_->reginfo_map_.Insert(nullptr);
145 for (RegisterInfo* info = it.Next(); info != nullptr; info = it.Next()) {
150 info->IsDirty(), info->SReg(), info->DefStart() != nullptr);
199 for (RegisterInfo* alias = info->GetAliasChain(); alias != nullptr;
295 for (RegisterInfo* info = it.Next(); info != nullptr; info = it.Next()) {
328 for (RegisterInfo* info = it.Next(); info != nullptr; info = it.Next()) {
477 for (RegisterInfo* info = it.Next(); info != nullptr; inf
[all...]
H A Dmir_to_lir-inl.h145 DCHECK(reginfo_map_.Get(reg) != nullptr) << "No info for 0x" << reg;
154 DCHECK(reginfo_map_.Get(reg) != nullptr) << "No info for 0x" << reg;
261 DCHECK(res != nullptr);
/art/compiler/optimizing/
H A Dcode_generator.cc148 if (locations == nullptr) return;
186 if (load != nullptr) {
226 if (instruction->GetLocations() == nullptr) {
263 return nullptr;
271 return nullptr;
H A Dlive_interval_test.cc173 i < number_of_expected_ranges && current != nullptr;
183 if (current != nullptr || i != number_of_expected_ranges) {
276 ASSERT_TRUE(split == nullptr);
H A Dgraph_test.cc304 ASSERT_EQ(first_instruction->GetPrevious(), nullptr);
305 ASSERT_EQ(got->GetNext(), nullptr);
317 ASSERT_EQ(first_instruction->GetPrevious(), nullptr);
320 ASSERT_EQ(got->GetNext(), nullptr);
H A Dlinearize_test.cc42 ASSERT_NE(graph, nullptr);
H A Dpretty_printer.h107 : HPrettyPrinter(graph), str_(""), current_block_(nullptr) { }
H A Dpretty_printer_test.cc36 ASSERT_NE(graph, nullptr);
/art/runtime/interpreter/
H A Dinterpreter_common.h110 Object* receiver = (type == kStatic) ? nullptr : shadow_frame.GetVRegReference(vregC);
115 if (UNLIKELY(method == nullptr)) {
136 if (UNLIKELY(receiver == nullptr)) {
145 if (UNLIKELY(method == nullptr)) {
197 return nullptr;
/art/runtime/hprof/
H A Dhprof.cc181 HprofRecord() : alloc_length_(128), fp_(nullptr), tag_(0), time_(0), length_(0), dirty_(false) {
507 DCHECK(arg != nullptr);
508 DCHECK(obj != nullptr);
509 DCHECK(*obj != nullptr);
533 CHECK(c != nullptr);
595 if (c == nullptr) {
859 if (space != nullptr) {
927 rec->AddObjectId(nullptr); // no signer
928 rec->AddObjectId(nullptr); // no prot domain
929 rec->AddObjectId(nullptr); // reserve
[all...]
/art/runtime/base/
H A Dbit_vector.cc49 if (storage_ == nullptr) {
431 if (prefix != nullptr) {
444 if (prefix != nullptr) {
/art/compiler/dex/
H A Dmir_graph_test.cc71 bb->successor_blocks = nullptr;
119 ASSERT_NE(cu_.mir_graph->topological_order_, nullptr);
120 ASSERT_NE(cu_.mir_graph->topological_order_loop_ends_, nullptr);
121 ASSERT_NE(cu_.mir_graph->topological_order_indexes_, nullptr);
/art/runtime/entrypoints/quick/
H A Dquick_jni_entrypoints.cc33 DCHECK(env != nullptr);
/art/runtime/gc/accounting/
H A Dcard_table.cc64 MemMap::MapAnonymous("card table", nullptr, capacity + 256, PROT_READ | PROT_WRITE,

Completed in 936 milliseconds

1234567891011>>