Lines Matching refs:other_dex_data
1479 for (const DexFileData* other_dex_data : other.info_) { in MergeWith() local
1482 const DexFileData* dex_data = FindDexData(other_dex_data->profile_key, in MergeWith()
1485 if ((dex_data != nullptr) && (dex_data->checksum != other_dex_data->checksum)) { in MergeWith()
1486 LOG(WARNING) << "Checksum mismatch for dex " << other_dex_data->profile_key; in MergeWith()
1503 for (const DexFileData* other_dex_data : other.info_) { in MergeWith() local
1504 const DexFileData* dex_data = GetOrAddDexFileData(other_dex_data->profile_key, in MergeWith()
1505 other_dex_data->checksum, in MergeWith()
1506 other_dex_data->num_method_ids); in MergeWith()
1510 dex_profile_index_remap.Put(other_dex_data->profile_index, dex_data->profile_index); in MergeWith()
1514 for (const DexFileData* other_dex_data : other.info_) { in MergeWith() local
1515 DexFileData* dex_data = const_cast<DexFileData*>(FindDexData(other_dex_data->profile_key, in MergeWith()
1516 other_dex_data->checksum)); in MergeWith()
1521 dex_data->class_set.insert(other_dex_data->class_set.begin(), in MergeWith()
1522 other_dex_data->class_set.end()); in MergeWith()
1526 for (const auto& other_method_it : other_dex_data->method_map) { in MergeWith()
1551 dex_data->MergeBitmap(*other_dex_data); in MergeWith()
1777 const DexFileData& other_dex_data = *other.info_[i]; in Equals() local
1778 if (!(dex_data == other_dex_data)) { in Equals()