Lines Matching refs:other_dex_data
1518 for (const DexFileData* other_dex_data : other.info_) { in MergeWith() local
1521 const DexFileData* dex_data = FindDexData(other_dex_data->profile_key, in MergeWith()
1524 if ((dex_data != nullptr) && (dex_data->checksum != other_dex_data->checksum)) { in MergeWith()
1525 LOG(WARNING) << "Checksum mismatch for dex " << other_dex_data->profile_key; in MergeWith()
1542 for (const DexFileData* other_dex_data : other.info_) { in MergeWith() local
1543 const DexFileData* dex_data = GetOrAddDexFileData(other_dex_data->profile_key, in MergeWith()
1544 other_dex_data->checksum, in MergeWith()
1545 other_dex_data->num_method_ids); in MergeWith()
1549 dex_profile_index_remap.Put(other_dex_data->profile_index, dex_data->profile_index); in MergeWith()
1553 for (const DexFileData* other_dex_data : other.info_) { in MergeWith() local
1554 DexFileData* dex_data = const_cast<DexFileData*>(FindDexData(other_dex_data->profile_key, in MergeWith()
1555 other_dex_data->checksum)); in MergeWith()
1560 dex_data->class_set.insert(other_dex_data->class_set.begin(), in MergeWith()
1561 other_dex_data->class_set.end()); in MergeWith()
1565 for (const auto& other_method_it : other_dex_data->method_map) { in MergeWith()
1590 dex_data->MergeBitmap(*other_dex_data); in MergeWith()
1789 const DexFileData& other_dex_data = *other.info_[i]; in Equals() local
1790 if (!(dex_data == other_dex_data)) { in Equals()