/art/test/015-switch/ |
D | expected.txt | 2 CORRECT (not found) 6 CORRECT (not found) 7 CORRECT (not found)
|
/art/test/063-process-manager/src/ |
D | Main.java | 27 boolean found = false; in checkManager() 35 found = true; in checkManager() 39 if (! found) { in checkManager()
|
/art/compiler/utils/ |
D | growable_array.h | 158 bool found = false; in Delete() local 160 if (!found && elem_list_[i] == element) { in Delete() 161 found = true; in Delete() 163 if (found) { in Delete() 168 DCHECK(found || (element == elem_list_[num_used_ - 1])); in Delete()
|
D | assembler_test.h | 438 bool found = false; in Objdump() local 441 found = true; in Objdump() 448 if (found) { in Objdump()
|
D | assembler_thumb_test.cc | 128 bool found = founddir != ""; in GetAndroidToolsDir() local 129 if (!found) { in GetAndroidToolsDir()
|
/art/runtime/ |
D | dex_file_test.cc | 314 const DexFile::ProtoId* found = in TEST_F() local 316 ASSERT_TRUE(found != NULL); in TEST_F() 317 EXPECT_EQ(java_lang_dex_file_->GetIndexForProtoId(*found), i); in TEST_F() 327 const DexFile::MethodId* found = java_lang_dex_file_->FindMethodId(klass, name, signature); in TEST_F() local 328 ASSERT_TRUE(found != NULL) << "Didn't find method " << i << ": " in TEST_F() 332 EXPECT_EQ(java_lang_dex_file_->GetIndexForMethodId(*found), i); in TEST_F() 342 const DexFile::FieldId* found = java_lang_dex_file_->FindFieldId(klass, name, type); in TEST_F() local 343 ASSERT_TRUE(found != NULL) << "Didn't find field " << i << ": " in TEST_F() 347 EXPECT_EQ(java_lang_dex_file_->GetIndexForFieldId(*found), i); in TEST_F()
|
D | intern_table.cc | 163 mirror::String* found = LookupStrong(image_string); in AddImageStringsToTable() local 164 if (found == nullptr) { in AddImageStringsToTable() 167 DCHECK_EQ(found, image_string); in AddImageStringsToTable()
|
D | mem_map.cc | 463 bool found = false; in ~MemMap() local 468 found = true; in ~MemMap() 473 CHECK(found) << "MemMap not found"; in ~MemMap()
|
/art/runtime/gc/space/ |
D | large_object_space.cc | 143 MemMaps::iterator found = mem_maps_.find(ptr); in Free() local 144 if (UNLIKELY(found == mem_maps_.end())) { in Free() 148 DCHECK_GE(num_bytes_allocated_, found->second->Size()); in Free() 149 size_t allocation_size = found->second->Size(); in Free() 152 delete found->second; in Free() 153 mem_maps_.erase(found); in Free() 159 auto found = mem_maps_.find(obj); in AllocationSize() local 160 CHECK(found != mem_maps_.end()) << "Attempted to get size of a large object which is not live"; in AllocationSize() 161 return found->second->Size(); in AllocationSize()
|
/art/runtime/arch/arm64/ |
D | fault_handler_arm64.cc | 130 bool found = false; in Action() local 135 found = true; in Action() 140 if (found) { in Action()
|
/art/runtime/arch/arm/ |
D | fault_handler_arm.cc | 152 bool found = false; in Action() local 157 found = true; in Action() 162 if (found) { in Action()
|
/art/test/035-enum/ |
D | expected.txt | 1 found field CRAWLING
|
/art/runtime/interpreter/ |
D | interpreter_common.cc | 776 Class* found = class_linker->FindClass(self, descriptor.c_str(), class_loader); in UnstartedRuntimeFindClass() local 777 if (found == nullptr && abort_if_not_found) { in UnstartedRuntimeFindClass() 784 if (found != nullptr && initialize_class) { in UnstartedRuntimeFindClass() 786 Handle<mirror::Class> h_class(hs.NewHandle(found)); in UnstartedRuntimeFindClass() 792 result->SetL(found); in UnstartedRuntimeFindClass() 838 ArtField* found = NULL; in UnstartedRuntimeInvoke() local 840 for (int32_t i = 0; i < fields->GetLength() && found == NULL; ++i) { in UnstartedRuntimeInvoke() 843 found = f; in UnstartedRuntimeInvoke() 846 if (found == NULL) { in UnstartedRuntimeInvoke() 848 for (int32_t i = 0; i < fields->GetLength() && found == NULL; ++i) { in UnstartedRuntimeInvoke() [all …]
|
/art/compiler/dex/ |
D | pass_driver_me.h | 118 bool found = strstr(dump_pass_list, pass->GetName()); in RunPass() local 119 should_dump = (should_dump || found); in RunPass()
|
D | mir_dataflow.cc | 1360 bool found = false; in VerifyPredInfo() local 1362 found = true; in VerifyPredInfo() 1364 found = true; in VerifyPredInfo() 1372 found = true; in VerifyPredInfo() 1377 if (found == false) { in VerifyPredInfo()
|
D | mir_graph.cc | 2112 bool found = false; in ReplaceChild() local 2115 found = true; in ReplaceChild() 2120 found = true; in ReplaceChild() 2132 found = true; in ReplaceChild() 2137 return found; in ReplaceChild() 2142 bool found = false; in UpdatePredecessor() local 2154 found = true; in UpdatePredecessor() 2160 if (found == false) { in UpdatePredecessor()
|
/art/runtime/arch/x86/ |
D | fault_handler_x86.cc | 355 bool found = false; in Action() local 358 found = true; in Action() 364 if (found) { in Action()
|
/art/runtime/gc/accounting/ |
D | mod_union_table.cc | 281 auto found = references_.find(card); in UpdateAndMarkReferences() local 282 if (found == references_.end()) { in UpdateAndMarkReferences() 289 found->second = cards_references; in UpdateAndMarkReferences()
|
/art/test/ |
D | README.txt | 9 For most tests, the sources are in the "src" subdirectory. Sources found
|
D | Android.run-test.mk | 378 $$(error found $(2) expected host or target) 425 $$(error found $(3) expected optimizing, interpreter or default) 433 $$(error found $(4) expected 32 or 64) 460 $$(error found $(5) expected undefined or gcverify, gcstress or trace) 526 $$(error found $(2) expected host or target) 579 $$(error found $(2) expected host or target)
|
/art/build/ |
D | Android.common_build.mk | 253 $(warning TARGET_CPU_SMP should be (true|false), found $(TARGET_CPU_SMP))
|
D | Android.gtest.mk | 438 $$(error found $(1) expected host or target)
|
/art/runtime/jdwp/ |
D | jdwp_event.cc | 314 bool found = false; in UnregisterEventById() local 320 found = true; in UnregisterEventById() 328 if (found) { in UnregisterEventById()
|
/art/test/046-reflect/ |
D | expected.txt | 73 as expected: aPrivateInt not found
|
/art/compiler/driver/ |
D | compiler_driver.cc | 1582 bool found = false; in CheckAndClearResolveException() local 1583 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) { in CheckAndClearResolveException() 1585 found = true; in CheckAndClearResolveException() 1588 if (!found) { in CheckAndClearResolveException()
|