Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/LTO/
H A DLTOModule.cpp270 auto IterBool = in addObjCClass() local
272 if (IterBool.second) { in addObjCClass()
306 auto IterBool = in addObjCCategory() local
309 if (!IterBool.second) in addObjCCategory()
313 info.name = IterBool.first->first(); in addObjCCategory()
325 auto IterBool = in addObjCClassRef() local
328 if (!IterBool.second) in addObjCClassRef()
332 info.name = IterBool.first->first(); in addObjCClassRef()
479 if (!IterBool.second) in addAsmGlobalSymbol()
522 if (!IterBool.second) in addAsmGlobalSymbolUndef()
[all …]
/freebsd-12.1/contrib/llvm/lib/IR/
H A DValueSymbolTable.cpp65 auto IterBool = vmap.insert(std::make_pair(UniqueName, V)); in makeUniqueName() local
66 if (IterBool.second) in makeUniqueName()
67 return &*IterBool.first; in makeUniqueName()
104 auto IterBool = vmap.insert(std::make_pair(Name, V)); in createValueName() local
105 if (IterBool.second) { in createValueName()
108 return &*IterBool.first; in createValueName()
H A DType.cpp409 auto IterBool = in setName() local
413 if (!IterBool.second) { in setName()
423 IterBool = getContext().pImpl->NamedStructTypes.insert( in setName()
425 } while (!IterBool.second); in setName()
431 SymbolTableEntry = &*IterBool.first; in setName()
/freebsd-12.1/contrib/llvm/include/llvm/TableGen/
H A DStringToOffsetTable.h33 auto IterBool = variable
35 if (IterBool.second) {
42 return IterBool.first->second;
/freebsd-12.1/contrib/llvm/lib/MC/
H A DMCContext.cpp394 auto IterBool = ELFUniquingMap.insert( in getELFSection() local
396 auto &Entry = *IterBool.first; in getELFSection()
397 if (!IterBool.second) in getELFSection()
437 auto IterBool = COFFUniquingMap.insert(std::make_pair(T, nullptr)); in getCOFFSection() local
438 auto Iter = IterBool.first; in getCOFFSection()
439 if (!IterBool.second) in getCOFFSection()
511 auto IterBool = WasmUniquingMap.insert( in getWasmSection() local
513 auto &Entry = *IterBool.first; in getWasmSection()
514 if (!IterBool.second) in getWasmSection()
H A DMCDwarf.cpp566 auto IterBool = SourceIdMap.insert( in tryGetFile() local
569 if (!IterBool.second) in tryGetFile()
570 return IterBool.first->second; in tryGetFile()
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DAddressPool.cpp22 auto IterBool = in getIndex() local
24 return IterBool.first->second.Number; in getIndex()
H A DAsmPrinter.cpp3019 auto IterBool = GCMap.insert(std::make_pair(&S, std::move(GMP))); in GetOrCreateGCPrinter() local
3020 return IterBool.first->second.get(); in GetOrCreateGCPrinter()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/
H A DSourceManager.cpp198 auto IterBool = FilenameIDs.try_emplace(Name, FilenamesByID.size()); in getLineTableFilenameID() local
199 if (IterBool.second) in getLineTableFilenameID()
200 FilenamesByID.push_back(&*IterBool.first); in getLineTableFilenameID()
201 return IterBool.first->second; in getLineTableFilenameID()