Home
last modified time | relevance | path

Searched refs:found (Results 1 – 25 of 38) sorted by relevance

12

/art/test/063-process-manager/src/
DMain.java27 boolean found = false; in checkManager()
35 found = true; in checkManager()
39 if (! found) { in checkManager()
/art/test/015-switch/
Dexpected.txt118 CORRECT (not found)
122 CORRECT (not found)
123 CORRECT (not found)
/art/tools/dexfuzz/src/dexfuzz/program/mutators/
DPoolIndexChanger.java131 boolean found = false; in generateMutation()
138 while (!found) { in generateMutation()
142 found = true; in generateMutation()
157 found = false; in generateMutation()
/art/runtime/
Ddex_file_test.cc316 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()
Dart_method.cc362 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()
Dintern_table.cc194 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/
Dexpected.txt1 found field CRAWLING
/art/runtime/arch/arm64/
Dfault_handler_arm64.cc134 bool found = false; in Action() local
139 found = true; in Action()
144 if (found) { in Action()
/art/compiler/debug/dwarf/
Ddwarf_test.h138 bool found = false; in CheckObjdumpOutput() local
142 found = true; in CheckObjdumpOutput()
146 if (!found) { in CheckObjdumpOutput()
/art/runtime/arch/arm/
Dfault_handler_arm.cc161 bool found = false; in Action() local
166 found = true; in Action()
171 if (found) { in Action()
/art/test/135-MirandaDispatch/
Dinfo.txt3 …Main$TheInterface.m()' was expected to be of type virtual but instead was found to be of type inte…
/art/runtime/arch/x86/
Dfault_handler_x86.cc368 bool found = false; in Action() local
371 found = true; in Action()
377 if (found) { in Action()
/art/test/
DREADME.txt9 For most tests, the sources are in the "src" subdirectory. Sources found
DAndroid.run-test.mk690 $$(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/
DAndroid.oat.mk81 $$(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/
Dregion_space-inl.h284 bool found = true; in AllocLarge() local
292 found = false; in AllocLarge()
296 if (found) { in AllocLarge()
/art/compiler/optimizing/
Dbounds_check_elimination.cc109 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/
Dmod_union_table.cc389 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/
Dexpected.txt33 …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/
Db_21869691A.smali19 # Then calling invoke-interface C.a() will go wrong if there is no explicit check: a can't be found
/art/runtime/interpreter/
Dunstarted_runtime.cc123 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/
Dassembler_test_base.h272 bool found = false; in Objdump() local
275 found = true; in Objdump()
282 if (found) { in Objdump()
/art/tools/dexfuzz/src/dexfuzz/program/
DIdCreator.java669 boolean found = true; in findTypeList()
673 found = false; in findTypeList()
678 if (found && idx == parameterList.length) { in findTypeList()
/art/compiler/
Dimage_writer.cc725 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/
DIrreducibleLoop.smali53 # a live interval is found while connecting siblings, but that

12