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

/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.h158 bool found = false; local
160 if (!found && elem_list_[i] == element) {
161 found = true;
163 if (found) {
167 // We should either have found the element, or it was the last (unscanned) element.
168 DCHECK(found || (element == elem_list_[num_used_ - 1]));
H A Dassembler_test.h438 bool found = false; local
441 found = true;
448 if (found) {
H A Dassembler_thumb_test.cc128 bool found = founddir != ""; local
129 if (!found) {
/art/runtime/
H A Ddex_file_test.cc314 const DexFile::ProtoId* found = local
316 ASSERT_TRUE(found != NULL);
317 EXPECT_EQ(java_lang_dex_file_->GetIndexForProtoId(*found), i);
327 const DexFile::MethodId* found = java_lang_dex_file_->FindMethodId(klass, name, signature); local
328 ASSERT_TRUE(found != NULL) << "Didn't find method " << i << ": "
332 EXPECT_EQ(java_lang_dex_file_->GetIndexForMethodId(*found), i);
342 const DexFile::FieldId* found = java_lang_dex_file_->FindFieldId(klass, name, type); local
343 ASSERT_TRUE(found != NULL) << "Didn't find field " << i << ": "
347 EXPECT_EQ(java_lang_dex_file_->GetIndexForFieldId(*found), i);
H A Dintern_table.cc163 mirror::String* found = LookupStrong(image_string); local
164 if (found == nullptr) {
167 DCHECK_EQ(found, image_string);
240 // A match was found in the weak table. Promote to the strong table.
H A Dmem_map.cc193 // found, or a generic error in other cases.
328 next_mem_pos_ = tail_ptr; // update early, as we break out when we found and mapped a region
463 bool found = false; local
468 found = true;
473 CHECK(found) << "MemMap not found";
H A Dclass_linker.cc778 break; // Not found, done.
999 "0x%x, found 0x%x", oat_location, expected_image_oat_checksum,
1008 PRIuPTR ", found %ud", oat_location, expected_image_oat_offset,
1016 " found %d", oat_location, expected_patch_delta, actual_patch_delta);
1032 "found 0x%x", oat_location, expected_dex_checksum,
1175 // If no classes.dex found in dex_location, it has been stripped or is corrupt, assume oat is
1219 error_msgs->push_back(StringPrintf("Failed to verify oat file '%s' found for dex location "
1226 error_msgs->push_back(StringPrintf("Failed to verify non-executable oat file '%s' found for "
2042 // Check if this would be found in the parent boot class loader.
2214 ThrowNoClassDefFoundError("Class %s not found", PrintableStrin
2406 bool found = false; local
2498 bool found = FindOatMethodFor(method, &oat_method); local
[all...]
/art/runtime/arch/arm64/
H A Dfault_handler_arm64.cc130 bool found = false; local
135 found = true;
140 if (found) {
180 VLOG(signals) << "Stack overflow found";
/art/runtime/gc/space/
H A Dlarge_object_space.cc143 MemMaps::iterator found = mem_maps_.find(ptr); local
144 if (UNLIKELY(found == mem_maps_.end())) {
148 DCHECK_GE(num_bytes_allocated_, found->second->Size());
149 size_t allocation_size = found->second->Size();
152 delete found->second;
153 mem_maps_.erase(found);
159 auto found = mem_maps_.find(obj); local
160 CHECK(found != mem_maps_.end()) << "Attempted to get size of a large object which is not live";
161 return found->second->Size();
/art/compiler/dex/
H A Dpass_driver_me.h118 bool found = strstr(dump_pass_list, pass->GetName()); local
119 should_dump = (should_dump || found);
H A Dmir_dataflow.cc1339 * to that found in GenInvoke() to decide whether to count refs
1360 bool found = false; local
1362 found = true;
1364 found = true;
1372 found = true;
1377 if (found == false) {
1382 LOG(FATAL) << "Successor " << block_name1 << "not found from "
H A Dmir_graph.cc1543 // No true loop head has been found but there may be true loop heads after the mess we need
2092 // We found a def of the register that we are being asked about.
2106 // If it is not -1, we found a match, is it ssa_reg?
2112 bool found = false; local
2115 found = true;
2120 found = true;
2132 found = true;
2137 return found;
2142 bool found = false; local
2154 found
[all...]
/art/runtime/arch/arm/
H A Dfault_handler_arm.cc152 bool found = false; local
157 found = true;
162 if (found) {
221 VLOG(signals) << "Stack overflow found";
/art/runtime/interpreter/
H A Dinterpreter_common.cc776 Class* found = class_linker->FindClass(self, descriptor.c_str(), class_loader); local
777 if (found == nullptr && abort_if_not_found) {
784 if (found != nullptr && initialize_class) {
786 Handle<mirror::Class> h_class(hs.NewHandle(found));
792 result->SetL(found);
838 ArtField* found = NULL; local
840 for (int32_t i = 0; i < fields->GetLength() && found == NULL; ++i) {
843 found = f;
846 if (found == NULL) {
848 for (int32_t i = 0; i < fields->GetLength() && found
[all...]
/art/runtime/arch/x86/
H A Dfault_handler_x86.cc355 bool found = false; local
358 found = true;
364 if (found) {
417 VLOG(signals) << "Stack overflow found";
/art/runtime/gc/accounting/
H A Dmod_union_table.cc281 auto found = references_.find(card); local
282 if (found == references_.end()) {
289 found->second = cards_references;
/art/build/
H A DAndroid.common_build.mk253 $(warning TARGET_CPU_SMP should be (true|false), found $(TARGET_CPU_SMP))
H A DAndroid.gtest.mk438 $$(error found $(1) expected host or target)
/art/runtime/jdwp/
H A Djdwp_event.cc314 bool found = false; local
320 found = true;
328 if (found) {
/art/test/
H A DAndroid.run-test.mk378 $$(error found $(2) expected host or target)
425 $$(error found $(3) expected optimizing, interpreter or default)
433 $$(error found $(4) expected 32 or 64)
460 $$(error found $(5) expected undefined or gcverify, gcstress or trace)
526 $$(error found $(2) expected host or target)
579 $$(error found $(2) expected host or target)
/art/compiler/driver/
H A Dcompiler_driver.cc766 // more are found
1559 << dex_file.GetLocation() << " previously found in "
1582 bool found = false; local
1583 for (size_t i = 0; (found == false) && (i < arraysize(expected_exceptions)); ++i) {
1585 found = true;
1588 if (!found) {
1946 // Clear any class not found or verification exceptions.

Completed in 1026 milliseconds