Lines Matching defs:it
59 auto it = verified_methods_.find(ref);
60 if (it != verified_methods_.end()) {
61 // TODO: Investigate why are we doing the work again for this method and try to avoid it.
65 DCHECK_EQ(it->second->GetDevirtMap().size(), verified_method->GetDevirtMap().size());
66 DCHECK_EQ(it->second->GetSafeCastSet().size(), verified_method->GetSafeCastSet().size());
68 DCHECK_EQ(it->second->GetDexGcMap().size(), verified_method->GetDexGcMap().size());
69 // Delete the new verified method since there was already an existing one registered. It
70 // is unsafe to replace the existing one since the JIT may be using it to generate a
82 auto it = verified_methods_.find(ref);
83 return (it != verified_methods_.end()) ? it->second : nullptr;
88 auto it = verified_methods_.find(ref);
89 if (it != verified_methods_.end()) {
90 delete it->second;
91 verified_methods_.erase(it);