Home
last modified time | relevance | path

Searched refs:IterBool (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTOModule.cpp270 auto IterBool = _undefines.try_emplace(superclassName); in addObjCClass() local
271 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() local
307 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() local
325 if (!IterBool.second) in addObjCClassRef()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DValueSymbolTable.cpp75 auto IterBool = vmap.insert(std::make_pair(UniqueName.str(), V)); in makeUniqueName() local
76 if (IterBool.second) in makeUniqueName()
77 return &*IterBool.first; in makeUniqueName()
118 auto IterBool = vmap.insert(std::make_pair(Name, V)); in createValueName() local
119 if (IterBool.second) { in createValueName()
122 return &*IterBool.first; in createValueName()
H A DType.cpp594 auto IterBool = in setName() local
598 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()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAddressPool.cpp21 auto IterBool = in getIndex() local
23 return IterBool.first->second.Number; in getIndex()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCContext.cpp744 auto IterBool = GOFFUniquingMap.insert(std::make_pair(UniqueName, nullptr)); in getGOFFSection() local
745 auto Iter = IterBool.first; in getGOFFSection()
746 if (!IterBool.second) in getGOFFSection()
864 auto IterBool = WasmUniquingMap.insert( in getWasmSection() local
866 auto &Entry = *IterBool.first; in getWasmSection()
867 if (!IterBool.second) in getWasmSection()
900 auto IterBool = XCOFFUniquingMap.insert(std::make_pair( in getXCOFFSection() local
904 auto &Entry = *IterBool.first; in getXCOFFSection()
905 if (!IterBool.second) { in getXCOFFSection()
H A DMCDwarf.cpp655 auto IterBool = SourceIdMap.insert( in tryGetFile() local
658 if (!IterBool.second) in tryGetFile()
659 return IterBool.first->second; in tryGetFile()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp185 auto IterBool = FilenameIDs.try_emplace(Name, FilenamesByID.size()); in getLineTableFilenameID() local
186 if (IterBool.second) in getLineTableFilenameID()
187 FilenamesByID.push_back(&*IterBool.first); in getLineTableFilenameID()
188 return IterBool.first->second; in getLineTableFilenameID()