Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/lib/IR/
HDValueSymbolTable.cpp59 auto IterBool = vmap.insert(std::make_pair(UniqueName, V)); in reinsertValue() local
60 if (IterBool.second) { in reinsertValue()
62 V->setValueName(&*IterBool.first); in reinsertValue()
80 auto IterBool = vmap.insert(std::make_pair(Name, V)); in createValueName() local
81 if (IterBool.second) { in createValueName()
84 return &*IterBool.first; in createValueName()
96 auto IterBool = vmap.insert(std::make_pair(UniqueName, V)); in createValueName() local
97 if (IterBool.second) { in createValueName()
100 return &*IterBool.first; in createValueName()
HDType.cpp461 auto IterBool = in setName() local
465 if (!IterBool.second) { in setName()
476 IterBool = getContext().pImpl->NamedStructTypes.insert( in setName()
478 } while (!IterBool.second); in setName()
484 SymbolTableEntry = &*IterBool.first; in setName()
/NextBSD/contrib/llvm/lib/LTO/
HDLTOModule.cpp289 auto IterBool = in addObjCClass() local
291 if (IterBool.second) { in addObjCClass()
292 NameAndAttributes &info = IterBool.first->second; in addObjCClass()
293 info.name = IterBool.first->first().data(); in addObjCClass()
325 auto IterBool = in addObjCCategory() local
328 if (!IterBool.second) in addObjCCategory()
331 NameAndAttributes &info = IterBool.first->second; in addObjCCategory()
332 info.name = IterBool.first->first().data(); in addObjCCategory()
344 auto IterBool = in addObjCClassRef() local
347 if (!IterBool.second) in addObjCClassRef()
[all …]
/NextBSD/contrib/llvm/include/llvm/TableGen/
HDStringToOffsetTable.h31 auto IterBool = variable
33 if (IterBool.second) {
40 return IterBool.first->second;
/NextBSD/contrib/llvm/lib/CodeGen/AsmPrinter/
HDAddressPool.cpp21 auto IterBool = in getIndex() local
23 return IterBool.first->second.Number; in getIndex()
HDAsmPrinter.cpp2503 auto IterBool = GCMap.insert(std::make_pair(&S, std::move(GMP))); in GetOrCreateGCPrinter() local
2504 return IterBool.first->second.get(); in GetOrCreateGCPrinter()
/NextBSD/contrib/llvm/lib/MC/
HDMCContext.cpp352 auto IterBool = ELFUniquingMap.insert( in getELFSection() local
354 auto &Entry = *IterBool.first; in getELFSection()
355 if (!IterBool.second) in getELFSection()
397 auto IterBool = COFFUniquingMap.insert(std::make_pair(T, nullptr)); in getCOFFSection() local
398 auto Iter = IterBool.first; in getCOFFSection()
399 if (!IterBool.second) in getCOFFSection()
HDMCDwarf.cpp364 auto IterBool = SourceIdMap.insert( in getFile() local
367 if (!IterBool.second) in getFile()
368 return IterBool.first->second; in getFile()
/NextBSD/contrib/llvm/tools/clang/lib/Basic/
HDSourceManager.cpp180 auto IterBool = in getLineTableFilenameID() local
182 if (IterBool.second) in getLineTableFilenameID()
183 FilenamesByID.push_back(&*IterBool.first); in getLineTableFilenameID()
184 return IterBool.first->second; in getLineTableFilenameID()