Home
last modified time | relevance | path

Searched refs:found (Results 1 – 25 of 33) 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/compiler/utils/
Dgrowable_array.h121 bool found = false; in Delete() local
123 if (!found && elem_list_[i] == element) { in Delete()
124 found = true; in Delete()
126 if (found) { in Delete()
131 DCHECK(found || (element == elem_list_[num_used_ - 1])); in Delete()
Dassembler_test_base.h260 bool found = false; in Objdump() local
263 found = true; in Objdump()
270 if (found) { in Objdump()
/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.cc315 const DexFile::ProtoId* found = in TEST_F() local
317 ASSERT_TRUE(found != nullptr); in TEST_F()
318 EXPECT_EQ(java_lang_dex_file_->GetIndexForProtoId(*found), i); in TEST_F()
328 const DexFile::MethodId* found = java_lang_dex_file_->FindMethodId(klass, name, signature); in TEST_F() local
329 ASSERT_TRUE(found != nullptr) << "Didn't find method " << i << ": " in TEST_F()
333 EXPECT_EQ(java_lang_dex_file_->GetIndexForMethodId(*found), i); in TEST_F()
343 const DexFile::FieldId* found = java_lang_dex_file_->FindFieldId(klass, name, type); in TEST_F() local
344 ASSERT_TRUE(found != nullptr) << "Didn't find field " << i << ": " in TEST_F()
348 EXPECT_EQ(java_lang_dex_file_->GetIndexForFieldId(*found), i); in TEST_F()
Dintern_table.cc171 mirror::String* found = LookupStrong(image_string); in AddImageStringsToTable() local
172 if (found == nullptr) { in AddImageStringsToTable()
175 DCHECK_EQ(found, image_string); in AddImageStringsToTable()
Dmem_map.cc523 bool found = false; in ~MemMap() local
528 found = true; in ~MemMap()
533 CHECK(found) << "MemMap not found"; in ~MemMap()
/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/dwarf/
Ddwarf_test.h148 bool found = false; in CheckObjdumpOutput() local
152 found = true; in CheckObjdumpOutput()
156 if (!found) { in CheckObjdumpOutput()
/art/test/035-enum/
Dexpected.txt1 found field CRAWLING
/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/build/
DAndroid.oat.mk72 $$(error found $(1) expected default, interpreter, jit or optimizing)
84 $$(error found $(2) expected pic or no-pic)
186 $$(error found $(1) expected default, interpreter, jit or optimizing)
198 $$(error found $(2) expected pic or no-pic)
/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/
DAndroid.run-test.mk628 $$(error found $(1) expected $(TARGET_TYPES))
638 $$(error found $(2) expected $(RUN_TYPES))
653 $$(error found $(3) expected $(PREBUILD_TYPES))
673 $$(error found $(4) expected $(COMPILER_TYPES))
691 $$(error found $(5) expected $(RELOCATE_TYPES))
707 $$(error found $(6) expected $(TRACE_TYPES))
722 $$(error found $(7) expected $(GC_TYPES))
740 $$(error found $(8) expected $(JNI_TYPES))
778 $$(error found $(9) expected $(IMAGE_TYPES))
788 $$(error found $(10) expected $(PICTEST_TYPES))
[all …]
DREADME.txt9 For most tests, the sources are in the "src" subdirectory. Sources found
/art/runtime/gc/space/
Dregion_space-inl.h285 bool found = true; in AllocLarge() local
293 found = false; in AllocLarge()
297 if (found) { in AllocLarge()
/art/runtime/interpreter/
Dunstarted_runtime.cc77 mirror::Class* found = class_linker->FindClass(self, descriptor.c_str(), class_loader); in UnstartedRuntimeFindClass() local
78 if (found == nullptr && abort_if_not_found) { in UnstartedRuntimeFindClass()
85 if (found != nullptr && initialize_class) { in UnstartedRuntimeFindClass()
87 Handle<mirror::Class> h_class(hs.NewHandle(found)); in UnstartedRuntimeFindClass()
93 result->SetL(found); in UnstartedRuntimeFindClass()
231 ArtField* found = nullptr; in UnstartedClassGetDeclaredField() local
236 found = f; in UnstartedClassGetDeclaredField()
240 if (found == nullptr) { in UnstartedClassGetDeclaredField()
245 found = f; in UnstartedClassGetDeclaredField()
250 if (found == nullptr) { in UnstartedClassGetDeclaredField()
[all …]
/art/compiler/optimizing/
Dbounds_check_elimination.cc82 static ValueBound DetectValueBoundFromValue(HInstruction* instruction, bool* found) { in DetectValueBoundFromValue() argument
85 *found = true; in DetectValueBoundFromValue()
90 *found = true; in DetectValueBoundFromValue()
98 *found = true; in DetectValueBoundFromValue()
104 *found = false; in DetectValueBoundFromValue()
1279 bool found; in HandleIf() local
1280 ValueBound bound = ValueBound::DetectValueBoundFromValue(right, &found); in HandleIf()
1285 if (!found) { in HandleIf()
1501 bool found; in VisitPhi() local
1503 initial_value, &found); in VisitPhi()
[all …]
/art/compiler/dex/
Dpass_driver_me.h132 const bool found = strstr(dump_pass_list.c_str(), pass->GetName()); in RunPass() local
133 should_dump = should_dump || found; in RunPass()
Dmir_dataflow.cc1419 bool found = false; in VerifyPredInfo() local
1421 found = true; in VerifyPredInfo()
1423 found = true; in VerifyPredInfo()
1428 found = true; in VerifyPredInfo()
1433 if (found == false) { in VerifyPredInfo()
/art/runtime/gc/accounting/
Dmod_union_table.cc326 auto found = references_.find(card); in UpdateAndMarkReferences() local
327 if (found == references_.end()) { in UpdateAndMarkReferences()
334 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/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()

12