Home | History | Annotate | Download | only in jit

Lines Matching refs:info_

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