Lines Matching refs:info_

189   AddUintToBuffer(&buffer, static_cast<uint16_t>(info_.size()));  in Save()
191 for (const auto& it : info_) { in Save()
244 auto info_it = info_.find(dex_location); in GetOrAddDexFileData()
245 if (info_it == info_.end()) { in GetOrAddDexFileData()
246 info_it = info_.Put(dex_location, DexFileData(checksum)); in GetOrAddDexFileData()
526 for (const auto& other_it : other.info_) { in MergeWith()
527 auto info_it = info_.find(other_it.first); in MergeWith()
528 if ((info_it != info_.end()) && (info_it->second.checksum != other_it.second.checksum)) { in MergeWith()
534 for (const auto& other_it : other.info_) { in MergeWith()
537 auto info_it = info_.find(other_dex_location); in MergeWith()
538 if (info_it == info_.end()) { in MergeWith()
539 info_it = info_.Put(other_dex_location, DexFileData(other_dex_data.checksum)); in MergeWith()
550 auto info_it = info_.find(GetProfileDexFileKey(method_ref.dex_file->GetLocation())); in ContainsMethod()
551 if (info_it != info_.end()) { in ContainsMethod()
562 auto info_it = info_.find(GetProfileDexFileKey(dex_file.GetLocation())); in ContainsClass()
563 if (info_it != info_.end()) { in ContainsClass()
575 for (const auto& it : info_) { in GetNumberOfMethods()
583 for (const auto& it : info_) { in GetNumberOfResolvedClasses()
592 if (info_.empty()) { in DumpInfo()
599 for (const auto& it : info_) { in DumpInfo()
639 return info_.Equals(other.info_); in Equals()
644 for (auto&& pair : info_) { in GetResolvedClasses()
656 for (auto& pair : info_) { in ClearResolvedClasses()