Searched defs:found (Results 1 - 12 of 12) sorted by relevance

/art/runtime/
H A Ddex_file_test.cc234 const DexFile::ProtoId* found = local
236 ASSERT_TRUE(found != NULL);
237 EXPECT_EQ(java_lang_dex_file_->GetIndexForProtoId(*found), i);
247 const DexFile::MethodId* found = java_lang_dex_file_->FindMethodId(klass, name, signature); local
249 ASSERT_TRUE(found != NULL) << "Didn't find method " << i << ": "
253 EXPECT_EQ(java_lang_dex_file_->GetIndexForMethodId(*found), i);
263 const DexFile::FieldId* found = java_lang_dex_file_->FindFieldId(klass, name, type); local
264 ASSERT_TRUE(found != NULL) << "Didn't find field " << i << ": "
268 EXPECT_EQ(java_lang_dex_file_->GetIndexForFieldId(*found), i);
H A Dintern_table.cc159 // A match was found in the weak table. Promote to the strong table.
215 const mirror::String* found = Lookup(weak_interns_, s, s->GetHashCode()); local
216 return found == s;
H A Dmonitor.cc303 // Race: the original read found an owner but now there is none
320 // Race: originally found and current owner have changed
673 VLOG(monitor) << StringPrintf("monitor: thread %d found lock %p surprise-fattened by another thread", threadId, thinp);
962 bool found = false; local
965 found = true;
969 return found;
H A Dclass_linker.cc708 << ", found " << actual_image_oat_checksum;
717 << ", found " << actual_image_oat_offset;
730 << ", found " << actual_dex_checksum;
924 // If no classes.dex found in dex_location, it has been stripped, assume oat is up-to-date.
938 // Look for an existing file in the dalvik-cache, validating the result if found
939 // not found in /foo/bar/baz.odex? try /data/dalvik-cache/foo@bar@baz.jar@classes.dex
960 // Try to generate oat file if it wasn't found or was obsolete.
1378 ThrowNoClassDefFoundError("Class %s not found", PrintableString(descriptor).c_str());
1565 bool found = false; local
1568 found
[all...]
/art/compiler/dex/
H A Dgrowable_array.h135 bool found = false; local
137 if (!found && elem_list_[i] == element) {
138 found = true;
140 if (found) {
144 // We should either have found the element, or it was the last (unscanned) element.
145 DCHECK(found || (element == elem_list_[num_used_ - 1]));
H A Dmir_dataflow.cc1258 * to that found in GenInvoke() to decide whether to count refs
1303 bool found = false; local
1305 found = true;
1307 found = true;
1315 found = true;
1320 if (found == false) {
1325 LOG(FATAL) << "Successor " << block_name1 << "not found from "
/art/runtime/gc/accounting/
H A Dmod_union_table.cc254 auto found = references_.find(card); local
255 if (found == references_.end()) {
262 found->second = cards_references;
H A Dspace_bitmap.h226 Objects::iterator found = contained_.find(obj); local
227 if (found != contained_.end()) {
228 contained_.erase(found);
/art/runtime/gc/space/
H A Dlarge_object_space.cc80 MemMaps::iterator found = mem_maps_.find(ptr); local
81 CHECK(found != mem_maps_.end()) << "Attempted to free large object which was not live";
82 DCHECK_GE(num_bytes_allocated_, found->second->Size());
83 size_t allocation_size = found->second->Size();
86 delete found->second;
87 mem_maps_.erase(found);
93 MemMaps::iterator found = mem_maps_.find(const_cast<mirror::Object*>(obj)); local
94 CHECK(found != mem_maps_.end()) << "Attempted to get size of a large object which is not live";
95 return found->second->Size();
166 FreeBlocks::iterator found local
257 FreeBlocks::iterator found = free_blocks_.lower_bound(&temp); local
[all...]
/art/compiler/dex/quick/
H A Dcodegen_util.cc480 bool found = false; local
483 found = true;
487 if (!found) {
751 * and if found now to work, we'll have to redo the sequence and retry.
/art/runtime/interpreter/
H A Dinterpreter.cc79 Class* found = Runtime::Current()->GetClassLinker()->FindClass(descriptor.c_str(), local
81 CHECK(found != NULL) << "Class.forName failed in un-started runtime for class: "
83 result->SetL(found);
97 ArtField* found = NULL; local
100 for (int32_t i = 0; i < fields->GetLength() && found == NULL; ++i) {
104 found = f;
107 if (found == NULL) {
109 for (int32_t i = 0; i < fields->GetLength() && found == NULL; ++i) {
113 found = f;
117 CHECK(found !
[all...]
/art/runtime/gc/collector/
H A Dmark_sweep.cc1052 // Object not found!
1304 bool found = false; local
1309 found = true;
1313 if (!found) {

Completed in 180 milliseconds