Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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 …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DValueSymbolTable.cpp64 auto IterBool = vmap.insert(std::make_pair(UniqueName, V)); in makeUniqueName() local
65 if (IterBool.second) in makeUniqueName()
66 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.cpp445 auto IterBool = in setName() local
449 if (!IterBool.second) { in setName()
459 IterBool = getContext().pImpl->NamedStructTypes.insert( in setName()
461 } while (!IterBool.second); in setName()
467 SymbolTableEntry = &*IterBool.first; in setName()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/
H A DStringToOffsetTable.h32 auto IterBool = variable
34 if (IterBool.second) {
41 return IterBool.first->second;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCContext.cpp543 auto IterBool = ELFUniquingMap.insert(std::make_pair( in getELFSection() local
547 auto &Entry = *IterBool.first; in getELFSection()
548 if (!IterBool.second) in getELFSection()
628 auto IterBool = COFFUniquingMap.insert(std::make_pair(T, nullptr)); in getCOFFSection() local
629 auto Iter = IterBool.first; in getCOFFSection()
630 if (!IterBool.second) in getCOFFSection()
696 auto IterBool = WasmUniquingMap.insert( in getWasmSection() local
698 auto &Entry = *IterBool.first; in getWasmSection()
699 if (!IterBool.second) in getWasmSection()
729 auto IterBool = XCOFFUniquingMap.insert(std::make_pair( in getXCOFFSection() local
[all …]
H A DMCDwarf.cpp576 auto IterBool = SourceIdMap.insert( in tryGetFile() local
579 if (!IterBool.second) in tryGetFile()
580 return IterBool.first->second; in tryGetFile()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DAddressPool.cpp21 auto IterBool = in getIndex() local
23 return IterBool.first->second.Number; in getIndex()
H A DAsmPrinter.cpp3398 auto IterBool = GCMap.insert(std::make_pair(&S, std::move(GMP))); in GetOrCreateGCPrinter() local
3399 return IterBool.first->second.get(); in GetOrCreateGCPrinter()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DSourceManager.cpp193 auto IterBool = FilenameIDs.try_emplace(Name, FilenamesByID.size()); in getLineTableFilenameID() local
194 if (IterBool.second) in getLineTableFilenameID()
195 FilenamesByID.push_back(&*IterBool.first); in getLineTableFilenameID()
196 return IterBool.first->second; in getLineTableFilenameID()