/art/test/063-process-manager/src/ |
D | Main.java | 42 boolean found = false; in checkManager() 55 found = true; in checkManager() 59 if (! found) { in checkManager() 69 boolean found = false; in waitForReaperTimedWaiting() 73 found = true; in waitForReaperTimedWaiting() 82 if (ok && (!reaperMustExist || found)) { in waitForReaperTimedWaiting()
|
/art/test/543-env-long-ref/ |
D | env_long_ref.cc | 29 bool found = false; in Java_Main_lookForMyRegisters() local 36 found = true; in Java_Main_lookForMyRegisters() 47 CHECK(found); in Java_Main_lookForMyRegisters()
|
/art/test/015-switch/ |
D | expected.txt | 118 CORRECT (not found) 122 CORRECT (not found) 123 CORRECT (not found)
|
/art/test/661-oat-writer-layout/ |
D | oat_writer_layout.cc | 57 bool found = false; in Java_Main_hasOatCompiledCode() local 60 /* out */ &found); in Java_Main_hasOatCompiledCode() 62 if (!found) { in Java_Main_hasOatCompiledCode()
|
/art/libdexfile/dex/ |
D | art_dex_file_loader_test.cc | 256 const dex::ProtoId* found = in TEST_F() local 258 ASSERT_TRUE(found != nullptr); in TEST_F() 259 EXPECT_EQ(java_lang_dex_file_->GetIndexForProtoId(*found), dex::ProtoIndex(i)); in TEST_F() 269 const dex::MethodId* found = java_lang_dex_file_->FindMethodId(klass, name, signature); in TEST_F() local 270 ASSERT_TRUE(found != nullptr) << "Didn't find method " << i << ": " in TEST_F() 274 EXPECT_EQ(java_lang_dex_file_->GetIndexForMethodId(*found), i); in TEST_F() 284 const dex::FieldId* found = java_lang_dex_file_->FindFieldId(klass, name, type); in TEST_F() local 285 ASSERT_TRUE(found != nullptr) << "Didn't find field " << i << ": " in TEST_F() 289 EXPECT_EQ(java_lang_dex_file_->GetIndexForFieldId(*found), i); in TEST_F()
|
/art/test/530-checker-peel-unroll/src/ |
D | Main.java | 997 int found = 0; in verifyUnrolling() local 1024 found += a[i]; in verifyUnrolling() 1025 found += b[i]; in verifyUnrolling() 1027 found += (int)mC[RESULT_POS][RESULT_POS]; in verifyUnrolling() 1029 expectEquals(expected, found); in verifyUnrolling() 1066 int found = 0; in verifyPeeling() local 1068 found += a[i]; in verifyPeeling() 1071 expectEquals(expected, found); in verifyPeeling()
|
/art/test/912-classes/ |
D | classes_art.cc | 110 bool found = false; in Java_art_Test912Art_isLoadedClass() local 111 for (jint i = 0; !found && i < class_count; ++i) { in Java_art_Test912Art_isLoadedClass() 118 found = strcmp(name.c_str(), sig) == 0; in Java_art_Test912Art_isLoadedClass() 125 return found; in Java_art_Test912Art_isLoadedClass()
|
/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/test/035-enum/ |
D | expected.txt | 1 found field CRAWLING
|
/art/runtime/arch/arm64/ |
D | fault_handler_arm64.cc | 125 bool found = false; in Action() local 130 found = true; in Action() 135 if (found) { in Action()
|
/art/compiler/debug/dwarf/ |
D | dwarf_test.h | 140 bool found = false; in CheckObjdumpOutput() local 144 found = true; in CheckObjdumpOutput() 148 if (!found) { in CheckObjdumpOutput()
|
/art/test/931-agent-thread/ |
D | agent_thread.cc | 78 bool found = false; in AgentMain() local 81 found = true; in AgentMain() 85 CHECK(found); in AgentMain()
|
/art/test/1960-obsolete-jit-multithread-native/ |
D | info.txt | 1 Tests issue found in b/73333076 where multiple threads sharing the same obsolete method could
|
/art/test/1961-obsolete-jit-multithread/ |
D | info.txt | 1 Tests issue found in b/73333076 where multiple threads sharing the same obsolete method could
|
/art/runtime/ |
D | art_method.cc | 444 static const OatFile::OatMethod FindOatMethodFromDexFileFor(ArtMethod* method, bool* found) in FindOatMethodFromDexFileFor() argument 466 found); in FindOatMethodFromDexFileFor() 467 if (!(*found)) { in FindOatMethodFromDexFileFor() 475 bool* found) in FindOatMethodFor() argument 484 return FindOatMethodFromDexFileFor(method, found); in FindOatMethodFor() 514 found); in FindOatMethodFor() 515 if (!(*found)) { in FindOatMethodFor() 625 bool found; in GetOatQuickMethodHeader() local 627 FindOatMethodFor(this, class_linker->GetImagePointerSize(), &found); in GetOatQuickMethodHeader() 628 if (!found) { in GetOatQuickMethodHeader() [all …]
|
/art/oatdump/ |
D | oatdump_test.h | 228 std::vector<bool> found(expected_prefixes.size(), false); in Exec() 229 auto line_handle_fn = [&found, &expected_prefixes](const char* line, size_t line_len) { in Exec() 236 if (!found[i] && in Exec() 239 found[i] = true; in Exec() 340 if (!found[i]) { in Exec()
|
/art/runtime/arch/arm/ |
D | fault_handler_arm.cc | 151 bool found = false; in Action() local 156 found = true; in Action() 161 if (found) { in Action()
|
/art/tools/jvmti-agents/breakpoint-logger/ |
D | README.md | 20 being used. On ART this is a dex-pc. Dex-pcs can be found using tools such as 29 that cannot be found using standard or bootstrap classloader at startup. 31 * Deviating from this format or including a breakpoint that cannot be found at
|
/art/test/656-annotation-lookup-generic-jni/ |
D | info.txt | 2 method with an annotation (to be found in a custom class loader)
|
/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 | 398 bool found = false; in Action() local 401 found = true; in Action() 407 if (found) { in Action()
|
/art/tools/hiddenapi/ |
D | hiddenapi.cc | 376 bool found = ForEachMatchingMember(other, fn); in ForEachResolvableMember_Impl() local 380 if (!found && allow_explore_up) { in ForEachResolvableMember_Impl() 382 found |= superclass->ForEachResolvableMember_Impl( in ForEachResolvableMember_Impl() 406 return found; in ForEachResolvableMember_Impl() 411 bool found = false; in ForEachMatchingMember() local 415 found = true; in ForEachMatchingMember() 427 return found; in ForEachMatchingMember()
|
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 138 ObjPtr<mirror::Class> found = class_linker->FindClass(self, descriptor.c_str(), class_loader); in UnstartedRuntimeFindClass() local 139 if (found == nullptr && abort_if_not_found) { in UnstartedRuntimeFindClass() 147 if (found != nullptr && initialize_class) { in UnstartedRuntimeFindClass() 149 HandleWrapperObjPtr<mirror::Class> h_class = hs.NewHandleWrapper(&found); in UnstartedRuntimeFindClass() 155 result->SetL(found); in UnstartedRuntimeFindClass() 339 ArtField* found = nullptr; in UnstartedClassGetDeclaredField() local 342 found = &field; in UnstartedClassGetDeclaredField() 346 if (found == nullptr) { in UnstartedClassGetDeclaredField() 349 found = &field; in UnstartedClassGetDeclaredField() 354 if (found != nullptr && ShouldDenyAccessToMember(found, shadow_frame)) { in UnstartedClassGetDeclaredField() [all …]
|
/art/build/ |
D | Android.oat.mk | 63 $$(error found $(1) expected interpreter, interp-ac, or optimizing) 150 $$(error found $(1) expected interpreter, interp-ac, or optimizing)
|
/art/test/071-dexfile-map-clean/src/ |
D | Main.java | 98 boolean found = true; in testDexMemoryMaps()
|