Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTOModule.cpp275 auto IterBool = in addObjCClass() local
277 if (IterBool.second) { in addObjCClass()
278 NameAndAttributes &info = IterBool.first->second; in addObjCClass()
279 info.name = IterBool.first->first(); in addObjCClass()
311 auto IterBool = in addObjCCategory() local
314 if (!IterBool.second) in addObjCCategory()
317 NameAndAttributes &info = IterBool.first->second; in addObjCCategory()
318 info.name = IterBool.first->first(); in addObjCCategory()
330 auto IterBool = in addObjCClassRef() local
333 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.cpp485 auto IterBool = in setName() local
489 if (!IterBool.second) { in setName()
499 IterBool = getContext().pImpl->NamedStructTypes.insert( in setName()
501 } while (!IterBool.second); in setName()
507 SymbolTableEntry = &*IterBool.first; in setName()
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DStringToOffsetTable.h32 auto IterBool = variable
34 if (IterBool.second) {
41 return IterBool.first->second;
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCContext.cpp679 auto IterBool = in getGOFFSection() local
681 auto Iter = IterBool.first; in getGOFFSection()
682 if (!IterBool.second) in getGOFFSection()
713 auto IterBool = COFFUniquingMap.insert(std::make_pair(T, nullptr)); in getCOFFSection() local
714 auto Iter = IterBool.first; in getCOFFSection()
715 if (!IterBool.second) in getCOFFSection()
772 auto IterBool = WasmUniquingMap.insert( in getWasmSection() local
774 auto &Entry = *IterBool.first; in getWasmSection()
775 if (!IterBool.second) in getWasmSection()
808 auto IterBool = XCOFFUniquingMap.insert(std::make_pair( in getXCOFFSection() local
[all …]
H A DMCDwarf.cpp616 auto IterBool = SourceIdMap.insert( in tryGetFile() local
619 if (!IterBool.second) in tryGetFile()
620 return IterBool.first->second; in tryGetFile()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAddressPool.cpp22 auto IterBool = in getIndex() local
24 return IterBool.first->second.Number; in getIndex()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp199 auto IterBool = FilenameIDs.try_emplace(Name, FilenamesByID.size()); in getLineTableFilenameID() local
200 if (IterBool.second) in getLineTableFilenameID()
201 FilenamesByID.push_back(&*IterBool.first); in getLineTableFilenameID()
202 return IterBool.first->second; in getLineTableFilenameID()