Lines Matching refs:it
52 auto it = module_->odr_list_map_.find(ud_type_unique_id_and_source); in LookupUserDefinedType() local
53 if (it == module_->odr_list_map_.end()) { in LookupUserDefinedType()
70 for (auto &definition : it->second) { in LookupUserDefinedType()
85 return MergeStatus(true, it->second.begin()->type_ir_->GetSelfType()); in LookupUserDefinedType()
219 auto it = AddToMapAndTypeGraph(std::move(added_type_ir), specific_type_map, in UpdateUDTypeAccounting() local
222 const std::string &key = GetODRListMapKey(&(it->second)); in UpdateUDTypeAccounting()
224 module_->AddToODRListMap(key, &(it->second), addend_compilation_unit_path); in UpdateUDTypeAccounting()
227 return {type_merge_status, it}; in UpdateUDTypeAccounting()
252 auto it = addend.type_graph_.find(underlying_type_id); in MergeEnumDependencies() local
253 if (it == addend.type_graph_.end()) { in MergeEnumDependencies()
258 it->second, addend, local_to_global_type_id_map); in MergeEnumDependencies()
313 auto it = parent_map->find(GetReferencedTypeMapKey(added_node)); in MergeReferencingTypeInternalAndUpdateParent() local
314 if (it == parent_map->end()) { in MergeReferencingTypeInternalAndUpdateParent()
332 merge_status = MergeStatus(false, it->second.GetSelfType()); in MergeReferencingTypeInternalAndUpdateParent()
364 auto it = type_graph.find(type_ir->GetReferencedType()); in DereferenceType() local
366 if (it == type_graph.end()) { in DereferenceType()
369 type_ir = it->second; in DereferenceType()