Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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 …]
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/libcxx/test/std/containers/associative/map/
H A Dcompare.pass.cpp33 typedef std::pair<Iter, bool> IterBool; in main() typedef
46 IterBool result = map.insert(std::make_pair(Key(0), 42)); in main()
49 IterBool result2 = map.insert(std::make_pair(Key(0), 43)); in main()
/llvm-project-15.0.7/llvm/include/llvm/TableGen/
H A DStringToOffsetTable.h32 auto IterBool = variable
34 if (IterBool.second) {
41 return IterBool.first->second;
/llvm-project-15.0.7/llvm/lib/MC/
H A DMCContext.cpp552 auto IterBool = ELFUniquingMap.insert(std::make_pair( in getELFSection() local
556 auto &Entry = *IterBool.first; in getELFSection()
557 if (!IterBool.second) in getELFSection()
650 auto Iter = IterBool.first; in getCOFFSection()
651 if (!IterBool.second) in getCOFFSection()
717 auto IterBool = WasmUniquingMap.insert( in getWasmSection() local
719 auto &Entry = *IterBool.first; in getWasmSection()
720 if (!IterBool.second) in getWasmSection()
756 auto IterBool = XCOFFUniquingMap.insert(std::make_pair( in getXCOFFSection() local
761 auto &Entry = *IterBool.first; in getXCOFFSection()
[all …]
H A DMCDwarf.cpp606 auto IterBool = SourceIdMap.insert( in tryGetFile() local
609 if (!IterBool.second) in tryGetFile()
610 return IterBool.first->second; in tryGetFile()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DAddressPool.cpp21 auto IterBool = in getIndex() local
23 return IterBool.first->second.Number; in getIndex()
H A DAsmPrinter.cpp3703 auto IterBool = GCMap.insert(std::make_pair(&S, std::move(GMP))); in GetOrCreateGCPrinter() local
3704 return IterBool.first->second.get(); in GetOrCreateGCPrinter()
/llvm-project-15.0.7/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()