Searched refs:IterBool (Results 1 – 7 of 7) sorted by relevance
270 auto IterBool = _undefines.try_emplace(superclassName); in addObjCClass() local271 if (IterBool.second) { in addObjCClass()272 NameAndAttributes &info = IterBool.first->second; in addObjCClass()273 info.name = IterBool.first->first(); in addObjCClass()305 auto IterBool = _undefines.try_emplace(targetclassName); in addObjCCategory() local307 if (!IterBool.second) in addObjCCategory()310 NameAndAttributes &info = IterBool.first->second; in addObjCCategory()311 info.name = IterBool.first->first(); in addObjCCategory()323 auto IterBool = _undefines.try_emplace(targetclassName); in addObjCClassRef() local325 if (!IterBool.second) in addObjCClassRef()[all …]
75 auto IterBool = vmap.insert(std::make_pair(UniqueName.str(), V)); in makeUniqueName() local76 if (IterBool.second) in makeUniqueName()77 return &*IterBool.first; in makeUniqueName()118 auto IterBool = vmap.insert(std::make_pair(Name, V)); in createValueName() local119 if (IterBool.second) { in createValueName()122 return &*IterBool.first; in createValueName()
594 auto IterBool = in setName() local598 if (!IterBool.second) { in setName()608 IterBool = getContext().pImpl->NamedStructTypes.insert( in setName()610 } while (!IterBool.second); in setName()616 SymbolTableEntry = &*IterBool.first; in setName()
21 auto IterBool = in getIndex() local23 return IterBool.first->second.Number; in getIndex()
744 auto IterBool = GOFFUniquingMap.insert(std::make_pair(UniqueName, nullptr)); in getGOFFSection() local745 auto Iter = IterBool.first; in getGOFFSection()746 if (!IterBool.second) in getGOFFSection()864 auto IterBool = WasmUniquingMap.insert( in getWasmSection() local866 auto &Entry = *IterBool.first; in getWasmSection()867 if (!IterBool.second) in getWasmSection()900 auto IterBool = XCOFFUniquingMap.insert(std::make_pair( in getXCOFFSection() local904 auto &Entry = *IterBool.first; in getXCOFFSection()905 if (!IterBool.second) { in getXCOFFSection()
655 auto IterBool = SourceIdMap.insert( in tryGetFile() local658 if (!IterBool.second) in tryGetFile()659 return IterBool.first->second; in tryGetFile()
185 auto IterBool = FilenameIDs.try_emplace(Name, FilenamesByID.size()); in getLineTableFilenameID() local186 if (IterBool.second) in getLineTableFilenameID()187 FilenamesByID.push_back(&*IterBool.first); in getLineTableFilenameID()188 return IterBool.first->second; in getLineTableFilenameID()