Lines Matching refs:It
318 SectionsSetTy::const_iterator It = SectionDescriptors.find(SectionKind); in getSectionDescriptor() local
320 if (It == SectionDescriptors.end()) in getSectionDescriptor()
326 return *It->second; in getSectionDescriptor()
333 SectionsSetTy::iterator It = SectionDescriptors.find(SectionKind); in getSectionDescriptor() local
335 if (It == SectionDescriptors.end()) in getSectionDescriptor()
341 assert(It->second.get() != nullptr); in getSectionDescriptor()
343 return *It->second; in getSectionDescriptor()
350 SectionsSetTy::const_iterator It = SectionDescriptors.find(SectionKind); in tryGetSectionDescriptor() local
352 if (It == SectionDescriptors.end()) in tryGetSectionDescriptor()
355 return It->second.get(); in tryGetSectionDescriptor()
362 SectionsSetTy::iterator It = SectionDescriptors.find(SectionKind); in tryGetSectionDescriptor() local
364 if (It == SectionDescriptors.end()) in tryGetSectionDescriptor()
367 return It->second.get(); in tryGetSectionDescriptor()
374 SectionsSetTy::iterator It = SectionDescriptors.find(SectionKind); in getOrCreateSectionDescriptor() local
376 if (It == SectionDescriptors.end()) { in getOrCreateSectionDescriptor()
382 It = Result.first; in getOrCreateSectionDescriptor()
385 return *It->second; in getOrCreateSectionDescriptor()