/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/test/015-switch/ |
D | expected.txt | 118 CORRECT (not found) 122 CORRECT (not found) 123 CORRECT (not found)
|
/art/tools/dexfuzz/src/dexfuzz/program/mutators/ |
D | PoolIndexChanger.java | 131 boolean found = false; in generateMutation() 138 while (!found) { in generateMutation() 142 found = true; in generateMutation() 157 found = false; in generateMutation()
|
/art/runtime/ |
D | dex_file_test.cc | 316 const DexFile::ProtoId* found = in TEST_F() local 318 ASSERT_TRUE(found != nullptr); in TEST_F() 319 EXPECT_EQ(java_lang_dex_file_->GetIndexForProtoId(*found), i); in TEST_F() 329 const DexFile::MethodId* found = java_lang_dex_file_->FindMethodId(klass, name, signature); in TEST_F() local 330 ASSERT_TRUE(found != nullptr) << "Didn't find method " << i << ": " in TEST_F() 334 EXPECT_EQ(java_lang_dex_file_->GetIndexForMethodId(*found), i); in TEST_F() 344 const DexFile::FieldId* found = java_lang_dex_file_->FindFieldId(klass, name, type); in TEST_F() local 345 ASSERT_TRUE(found != nullptr) << "Didn't find field " << i << ": " in TEST_F() 349 EXPECT_EQ(java_lang_dex_file_->GetIndexForFieldId(*found), i); in TEST_F()
|
D | art_method.cc | 362 bool found = false; in GetQuickenedInfo() local 364 Runtime::Current()->GetClassLinker()->FindOatMethodFor(this, &found); in GetQuickenedInfo() 365 if (!found || (oat_method.GetQuickCode() != nullptr)) { in GetQuickenedInfo() 426 bool found; in GetOatQuickMethodHeader() local 427 OatFile::OatMethod oat_method = class_linker->FindOatMethodFor(this, &found); in GetOatQuickMethodHeader() 428 if (!found) { in GetOatQuickMethodHeader()
|
D | intern_table.cc | 194 mirror::String* found = LookupStrongLocked(image_string); in AddImagesStringsToTable() local 195 if (found == nullptr) { in AddImagesStringsToTable() 198 DCHECK_EQ(found, image_string); in AddImagesStringsToTable()
|
/art/test/035-enum/ |
D | expected.txt | 1 found field CRAWLING
|
/art/runtime/arch/arm64/ |
D | fault_handler_arm64.cc | 134 bool found = false; in Action() local 139 found = true; in Action() 144 if (found) { in Action()
|
/art/compiler/debug/dwarf/ |
D | dwarf_test.h | 138 bool found = false; in CheckObjdumpOutput() local 142 found = true; in CheckObjdumpOutput() 146 if (!found) { in CheckObjdumpOutput()
|
/art/runtime/arch/arm/ |
D | fault_handler_arm.cc | 161 bool found = false; in Action() local 166 found = true; in Action() 171 if (found) { in Action()
|
/art/test/135-MirandaDispatch/ |
D | info.txt | 3 …Main$TheInterface.m()' was expected to be of type virtual but instead was found to be of type inte…
|
/art/runtime/arch/x86/ |
D | fault_handler_x86.cc | 368 bool found = false; in Action() local 371 found = true; in Action() 377 if (found) { in Action()
|
/art/test/ |
D | README.txt | 9 For most tests, the sources are in the "src" subdirectory. Sources found
|
D | Android.run-test.mk | 690 $$(error found $(1) expected $(TARGET_TYPES)) 700 $$(error found $(2) expected $(RUN_TYPES)) 715 $$(error found $(3) expected $(PREBUILD_TYPES)) 734 $$(error found $(4) expected $(COMPILER_TYPES)) 751 $$(error found $(5) expected $(RELOCATE_TYPES)) 767 $$(error found $(6) expected $(TRACE_TYPES)) 782 $$(error found $(7) expected $(GC_TYPES)) 800 $$(error found $(8) expected $(JNI_TYPES)) 851 $$(error found $(9) expected $(IMAGE_TYPES)) 863 $$(error found $(10) expected $(PICTEST_TYPES)) [all …]
|
/art/build/ |
D | Android.oat.mk | 81 $$(error found $(1) expected default, interpreter, interpreter-access-checks, jit or optimizing) 93 $$(error found $(2) expected pic or no-pic) 223 $$(error found $(1) expected default, interpreter, interpreter-access-checks, jit or optimizing) 235 $$(error found $(2) expected pic or no-pic)
|
/art/runtime/gc/space/ |
D | region_space-inl.h | 284 bool found = true; in AllocLarge() local 292 found = false; in AllocLarge() 296 if (found) { in AllocLarge()
|
/art/compiler/optimizing/ |
D | bounds_check_elimination.cc | 109 static ValueBound DetectValueBoundFromValue(HInstruction* instruction, /* out */ bool* found) { in DetectValueBoundFromValue() argument 112 *found = true; in DetectValueBoundFromValue() 117 *found = true; in DetectValueBoundFromValue() 125 *found = true; in DetectValueBoundFromValue() 131 *found = false; in DetectValueBoundFromValue() 729 bool found; in HandleIf() local 730 ValueBound bound = ValueBound::DetectValueBoundFromValue(right, &found); in HandleIf() 735 if (!found) { in HandleIf() 927 bool found; in VisitPhi() local 929 initial_value, &found); in VisitPhi() [all …]
|
/art/runtime/gc/accounting/ |
D | mod_union_table.cc | 389 auto found = references_.find(card); in UpdateAndMarkReferences() local 390 if (found == references_.end()) { in UpdateAndMarkReferences() 397 references_.erase(found); in UpdateAndMarkReferences() 399 found->second = cards_references; in UpdateAndMarkReferences()
|
/art/test/134-nodex2oat-nofallback/ |
D | expected.txt | 33 …Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack t… 64 …Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack t…
|
/art/test/800-smali/smali/ |
D | b_21869691A.smali | 19 # Then calling invoke-interface C.a() will go wrong if there is no explicit check: a can't be found
|
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 123 mirror::Class* found = class_linker->FindClass(self, descriptor.c_str(), class_loader); in UnstartedRuntimeFindClass() local 124 if (found == nullptr && abort_if_not_found) { in UnstartedRuntimeFindClass() 131 if (found != nullptr && initialize_class) { in UnstartedRuntimeFindClass() 133 Handle<mirror::Class> h_class(hs.NewHandle(found)); in UnstartedRuntimeFindClass() 139 result->SetL(found); in UnstartedRuntimeFindClass() 282 ArtField* found = nullptr; in UnstartedClassGetDeclaredField() local 285 found = &field; in UnstartedClassGetDeclaredField() 289 if (found == nullptr) { in UnstartedClassGetDeclaredField() 292 found = &field; in UnstartedClassGetDeclaredField() 297 if (found == nullptr) { in UnstartedClassGetDeclaredField() [all …]
|
/art/compiler/utils/ |
D | assembler_test_base.h | 272 bool found = false; in Objdump() local 275 found = true; in Objdump() 282 if (found) { in Objdump()
|
/art/tools/dexfuzz/src/dexfuzz/program/ |
D | IdCreator.java | 669 boolean found = true; in findTypeList() 673 found = false; in findTypeList() 678 if (found && idx == parameterList.length) { in findTypeList()
|
/art/compiler/ |
D | image_writer.cc | 725 auto found = prune_class_memo_.find(klass); in PruneAppImageClassInternal() local 726 if (found != prune_class_memo_.end()) { in PruneAppImageClassInternal() 728 return found->second; in PruneAppImageClassInternal() 953 mirror::String* const found = image_info.intern_table_->LookupStrong(self, string); in FindInternedString() local 956 if (found != nullptr) { in FindInternedString() 957 return found; in FindInternedString() 962 mirror::String* found = runtime->GetInternTable()->LookupStrong(self, string); in FindInternedString() local 966 if (found != nullptr && runtime->GetHeap()->ObjectIsInBootImageSpace(found)) { in FindInternedString() 967 return found; in FindInternedString()
|
/art/test/565-checker-irreducible-loop/smali/ |
D | IrreducibleLoop.smali | 53 # a live interval is found while connecting siblings, but that
|