Searched refs:found (Results 1 - 25 of 27) sorted by relevance

12

/art/test/063-process-manager/src/
H A DMain.java27 boolean found = false;
35 found = true;
39 if (! found) {
/art/compiler/utils/
H A Dgrowable_array.h121 bool found = false; local
123 if (!found && elem_list_[i] == element) {
124 found = true;
126 if (found) {
130 // We should either have found the element, or it was the last (unscanned) element.
131 DCHECK(found || (element == elem_list_[num_used_ - 1]));
H A Dassembler_test_base.h260 bool found = false; local
263 found = true;
270 if (found) {
/art/tools/dexfuzz/src/dexfuzz/program/mutators/
H A DPoolIndexChanger.java131 boolean found = false;
138 while (!found) {
142 found = true;
157 found = false;
/art/runtime/
H A Ddex_file_test.cc315 const DexFile::ProtoId* found = local
317 ASSERT_TRUE(found != nullptr);
318 EXPECT_EQ(java_lang_dex_file_->GetIndexForProtoId(*found), i);
328 const DexFile::MethodId* found = java_lang_dex_file_->FindMethodId(klass, name, signature); local
329 ASSERT_TRUE(found != nullptr) << "Didn't find method " << i << ": "
333 EXPECT_EQ(java_lang_dex_file_->GetIndexForMethodId(*found), i);
343 const DexFile::FieldId* found = java_lang_dex_file_->FindFieldId(klass, name, type); local
344 ASSERT_TRUE(found != nullptr) << "Didn't find field " << i << ": "
348 EXPECT_EQ(java_lang_dex_file_->GetIndexForFieldId(*found), i);
H A Dintern_table.cc171 mirror::String* found = LookupStrong(image_string); local
172 if (found == nullptr) {
175 DCHECK_EQ(found, image_string);
252 // A match was found in the weak table. Promote to the strong table.
H A Dmem_map.cc197 // found, or a generic error in other cases.
392 next_mem_pos_ = tail_ptr; // update early, as we break out when we found and mapped a region
523 bool found = false; local
528 found = true;
533 CHECK(found) << "MemMap not found";
H A Dclass_linker.cc1000 error_msgs->push_back("No original dex files found for dex location "
1757 // for, or not found.
1978 bool* found) {
1982 *found = false;
1985 *found = true;
2023 const OatFile::OatMethod ClassLinker::FindOatMethodFor(ArtMethod* method, bool* found) { argument
2055 found);
2056 if (!(*found)) {
2068 bool found; local
2069 OatFile::OatMethod oat_method = FindOatMethodFor(method, &found);
1977 FindOatClass(const DexFile& dex_file, uint16_t class_def_idx, bool* found) argument
2094 bool found; local
2111 bool found; local
[all...]
H A Dclass_linker.h488 const OatFile::OatMethod FindOatMethodFor(ArtMethod* method, bool* found)
553 // error and sets found to false.
554 OatFile::OatClass FindOatClass(const DexFile& dex_file, uint16_t class_def_idx, bool* found)
/art/compiler/dwarf/
H A Ddwarf_test.h148 bool found = false; local
152 found = true;
156 if (!found) {
159 "Not found anywhere in the rest of the output.";
/art/runtime/arch/arm64/
H A Dfault_handler_arm64.cc134 bool found = false; local
139 found = true;
144 if (found) {
185 VLOG(signals) << "Stack overflow found";
/art/build/
H A 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/runtime/arch/arm/
H A Dfault_handler_arm.cc161 bool found = false; local
166 found = true;
171 if (found) {
231 VLOG(signals) << "Stack overflow found";
/art/runtime/arch/x86/
H A Dfault_handler_x86.cc368 bool found = false; local
371 found = true;
377 if (found) {
430 VLOG(signals) << "Stack overflow found";
/art/runtime/gc/space/
H A Dregion_space-inl.h285 bool found = true; local
293 found = false;
297 if (found) {
/art/compiler/dex/
H A Dpass_driver_me.h132 const bool found = strstr(dump_pass_list.c_str(), pass->GetName()); variable
133 should_dump = should_dump || found;
237 // Check if we found this pass name in rest of string.
H A Dmir_dataflow.cc1419 bool found = false; local
1421 found = true;
1423 found = true;
1428 found = true;
1433 if (found == false) {
1438 LOG(FATAL) << "Successor " << block_name1 << " not found from "
H A Dmir_graph.cc1862 // No true loop head has been found but there may be true loop heads after the mess we need
2394 // We found a def of the register that we are being asked about.
2408 // If it is not -1, we found a match, is it ssa_reg?
2414 bool found = false; local
2417 found = true;
2422 found = true;
2429 found = true;
2434 return found;
2580 // LVN/GVN assumes there are no conflicts found by the type inference pass.)
/art/runtime/gc/accounting/
H A Dmod_union_table.cc326 auto found = references_.find(card); local
327 if (found == references_.end()) {
334 found->second = cards_references;
/art/runtime/interpreter/
H A Dunstarted_runtime.cc77 mirror::Class* found = class_linker->FindClass(self, descriptor.c_str(), class_loader); local
78 if (found == nullptr && abort_if_not_found) {
85 if (found != nullptr && initialize_class) {
87 Handle<mirror::Class> h_class(hs.NewHandle(found));
93 result->SetL(found);
231 ArtField* found = nullptr; local
236 found = f;
240 if (found == nullptr) {
245 found = f;
250 if (found
[all...]
/art/compiler/optimizing/
H A Dbounds_check_elimination.cc82 static ValueBound DetectValueBoundFromValue(HInstruction* instruction, bool* found) { argument
85 *found = true;
90 *found = true;
98 *found = true;
104 *found = false;
712 // No array access was found inside the loop that can benefit
1279 bool found; local
1280 ValueBound bound = ValueBound::DetectValueBoundFromValue(right, &found);
1285 if (!found) {
1286 // No constant or array.length+c format bound found
1501 bool found; local
[all...]
/art/test/
H A 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
[all...]
/art/tools/dexfuzz/src/dexfuzz/program/
H A DIdCreator.java669 boolean found = true;
673 found = false;
678 if (found && idx == parameterList.length) {
/art/runtime/arch/mips64/
H A Dquick_entrypoints_mips64.S517 * NOTE: "this" is first visable argument of the target, and so can be found in arg1/$a1.
580 1: # found double
592 2: # found float
601 3: # found long (8 bytes)
/art/runtime/jdwp/
H A Djdwp_event.cc317 bool found = false; local
323 found = true;
331 if (found) {

Completed in 653 milliseconds

12