Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/LTO/
H A DLTOModule.cpp275 auto IterBool = in addObjCClass() local
277 if (IterBool.second) { in addObjCClass()
311 auto IterBool = in addObjCCategory() local
314 if (!IterBool.second) in addObjCCategory()
318 info.name = IterBool.first->first(); in addObjCCategory()
330 auto IterBool = in addObjCClassRef() local
333 if (!IterBool.second) in addObjCClassRef()
483 if (!IterBool.second) in addAsmGlobalSymbol()
526 if (!IterBool.second) in addAsmGlobalSymbolUndef()
548 auto IterBool = in addPotentialUndefinedSymbol() local
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DValueSymbolTable.cpp64 auto IterBool = vmap.insert(std::make_pair(UniqueName.str(), V)); in makeUniqueName() local
65 if (IterBool.second) in makeUniqueName()
66 return &*IterBool.first; in makeUniqueName()
107 auto IterBool = vmap.insert(std::make_pair(Name, V)); in createValueName() local
108 if (IterBool.second) { in createValueName()
111 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-14.2/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DStringToOffsetTable.h32 auto IterBool = variable
34 if (IterBool.second) {
41 return IterBool.first->second;
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCContext.cpp551 auto &Entry = *IterBool.first; in getELFSection()
552 if (!IterBool.second) in getELFSection()
653 auto IterBool = in getGOFFSection() local
655 auto Iter = IterBool.first; in getGOFFSection()
656 if (!IterBool.second) in getGOFFSection()
682 auto Iter = IterBool.first; in getCOFFSection()
683 if (!IterBool.second) in getCOFFSection()
751 auto &Entry = *IterBool.first; in getWasmSection()
752 if (!IterBool.second) in getWasmSection()
792 auto &Entry = *IterBool.first; in getXCOFFSection()
[all …]
H A DMCDwarf.cpp610 auto IterBool = SourceIdMap.insert( in tryGetFile() local
613 if (!IterBool.second) in tryGetFile()
614 return IterBool.first->second; in tryGetFile()
/freebsd-14.2/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-14.2/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp191 auto IterBool = FilenameIDs.try_emplace(Name, FilenamesByID.size()); in getLineTableFilenameID() local
192 if (IterBool.second) in getLineTableFilenameID()
193 FilenamesByID.push_back(&*IterBool.first); in getLineTableFilenameID()
194 return IterBool.first->second; in getLineTableFilenameID()