Lines Matching refs:it

662     auto it = dex_file_oat_index_map_.find(dex_file);  in PrepareDexCacheArraySlots()  local
663 DCHECK(it != dex_file_oat_index_map_.end()) << dex_file->GetLocation(); in PrepareDexCacheArraySlots()
664 ImageInfo& image_info = GetImageInfo(it->second); in PrepareDexCacheArraySlots()
1138 auto it = visited->find(klass.Ptr()); in PruneImageClassInternal() local
1139 DCHECK(it != visited->end()); in PruneImageClassInternal()
1140 visited->erase(it); in PruneImageClassInternal()
1603 auto it = native_object_relocations_.find(cur_fields); in RecordNativeRelocations() local
1604 CHECK(it == native_object_relocations_.end()) << "Field array " << cur_fields in RecordNativeRelocations()
1655 auto it = native_object_relocations_.find(array); in RecordNativeRelocations() local
1656 CHECK(it == native_object_relocations_.end()) in RecordNativeRelocations()
1839 auto it = std::find(dex_files_.begin(), dex_files_.end(), &component_type->GetDexFile()); in operator ()() local
1840 DCHECK(it != dex_files_.end()) << klass->PrettyDescriptor(); in operator ()()
1841 dex_file_index = std::distance(dex_files_.begin(), it) + 1u; // 0 is for primitive types. in operator ()()
2038 auto it = image_writer_->dex_file_oat_index_map_.find(dex_file); in ProcessDexFileObjects() local
2039 DCHECK(it != image_writer_->dex_file_oat_index_map_.end()) << dex_file->GetLocation(); in ProcessDexFileObjects()
2040 const size_t oat_index = it->second; in ProcessDexFileObjects()
2937 auto it = native_object_relocations_.find(elem); in FixupPointerArray() local
2938 if (UNLIKELY(it == native_object_relocations_.end())) { in FixupPointerArray()
2939 if (it->second.IsArtMethodRelocation()) { in FixupPointerArray()
2989 const auto it = saved_hashcode_map_.find(obj); in CopyAndFixupObject() local
2990 dst->SetLockWord(it != saved_hashcode_map_.end() ? in CopyAndFixupObject()
2991 LockWord::FromHashCode(it->second, 0u) : LockWord::Default(), false); in CopyAndFixupObject()
3085 auto it = native_object_relocations_.find(obj); in GetNativeRelocation() local
3086 CHECK(it != native_object_relocations_.end()) << obj << " spaces " in GetNativeRelocation()
3088 return it->second; in GetNativeRelocation()
3185 auto it = pointer_arrays_.find(down_cast<mirror::PointerArray*>(orig)); in FixupObject() local
3186 if (it != pointer_arrays_.end()) { in FixupObject()
3188 FixupPointerArray(copy, down_cast<mirror::PointerArray*>(orig), it->second); in FixupObject()
3189 pointer_arrays_.erase(it); in FixupObject()
3538 auto it = oat_index_map_.find(obj); in GetOatIndex() local
3539 DCHECK(it != oat_index_map_.end()) << obj; in GetOatIndex()
3540 return it->second; in GetOatIndex()
3547 auto it = dex_file_oat_index_map_.find(dex_file); in GetOatIndexForDexFile() local
3548 DCHECK(it != dex_file_oat_index_map_.end()) << dex_file->GetLocation(); in GetOatIndexForDexFile()
3549 return it->second; in GetOatIndexForDexFile()