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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
H A DValueSymbolTable.cpp64 auto IterBool = vmap.insert(std::make_pair(UniqueName, V)); local
65 if (IterBool.second)
66 return &*IterBool.first;
103 auto IterBool = vmap.insert(std::make_pair(Name, V)); local
104 if (IterBool.second) {
107 return &*IterBool.first;
H A DType.cpp413 auto IterBool = local
417 if (!IterBool.second) {
427 IterBool = getContext().pImpl->NamedStructTypes.insert(
429 } while (!IterBool.second);
435 SymbolTableEntry = &*IterBool.first;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DStringToOffsetTable.h32 auto IterBool = local
34 if (IterBool.second) {
41 return IterBool.first->second;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/LTO/
H A DLTOModule.cpp271 auto IterBool = local
273 if (IterBool.second) {
274 NameAndAttributes &info = IterBool.first->second;
275 info.name = IterBool.first->first();
307 auto IterBool =
310 if (!IterBool.second)
313 NameAndAttributes &info = IterBool.first->second;
314 info.name = IterBool.first->first();
326 auto IterBool =
329 if (!IterBool
477 auto IterBool = _defines.insert(name); local
518 auto IterBool = _undefines.insert(std::make_pair(name, NameAndAttributes())); local
545 auto IterBool = _undefines.insert(std::make_pair(name, NameAndAttributes())); local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DAddressPool.cpp21 auto IterBool = local
23 return IterBool.first->second.Number;
H A DAsmPrinter.cpp3106 auto IterBool = GCMap.insert(std::make_pair(&S, std::move(GMP))); local
3107 return IterBool.first->second.get();
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCContext.cpp407 auto IterBool = ELFUniquingMap.insert( local
409 auto &Entry = *IterBool.first;
410 if (!IterBool.second)
450 auto IterBool = COFFUniquingMap.insert(std::make_pair(T, nullptr)); local
451 auto Iter = IterBool.first;
452 if (!IterBool.second)
516 auto IterBool = WasmUniquingMap.insert( local
518 auto &Entry = *IterBool.first;
519 if (!IterBool.second)
546 auto IterBool local
[all...]
H A DMCDwarf.cpp581 auto IterBool = SourceIdMap.insert( local
584 if (!IterBool.second)
585 return IterBool.first->second;
/freebsd-12-stable/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp231 auto IterBool = FilenameIDs.try_emplace(Name, FilenamesByID.size()); local
232 if (IterBool.second)
233 FilenamesByID.push_back(&*IterBool.first);
234 return IterBool.first->second;

Completed in 89 milliseconds