Home
last modified time | relevance | path

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

/minix/external/bsd/llvm/dist/llvm/lib/IR/
H A DValueSymbolTable.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()
H A DType.cpp459 auto IterBool = in setName() local
463 if (!IterBool.second) { in setName()
474 IterBool = getContext().pImpl->NamedStructTypes.insert( in setName()
476 } while (!IterBool.second); in setName()
482 SymbolTableEntry = &*IterBool.first; in setName()
/minix/external/bsd/llvm/dist/llvm/lib/LTO/
H A DLTOModule.cpp286 auto IterBool = in addObjCClass() local
288 if (IterBool.second) { in addObjCClass()
322 auto IterBool = in addObjCCategory() local
325 if (!IterBool.second) in addObjCCategory()
329 info.name = IterBool.first->first().data(); in addObjCCategory()
341 auto IterBool = in addObjCClassRef() local
344 if (!IterBool.second) in addObjCClassRef()
489 auto IterBool = _defines.insert(name); in addAsmGlobalSymbol() local
492 if (!IterBool.second) in addAsmGlobalSymbol()
535 if (!IterBool.second) in addAsmGlobalSymbolUndef()
[all …]
/minix/external/bsd/libc++/dist/libcxx/test/std/containers/associative/map/
H A Dcompare.pass.cpp32 typedef std::pair<Iter, bool> IterBool; in main() typedef
45 IterBool result = map.insert(std::make_pair(Key(0), 42)); in main()
48 IterBool result2 = map.insert(std::make_pair(Key(0), 43)); in main()
/minix/external/bsd/llvm/dist/llvm/include/llvm/TableGen/
H A DStringToOffsetTable.h31 auto IterBool = variable
33 if (IterBool.second) {
40 return IterBool.first->second;
/minix/external/bsd/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.cpp2329 auto IterBool = GCMap.insert(std::make_pair(&S, std::move(GMP))); in GetOrCreateGCPrinter() local
2330 return IterBool.first->second.get(); in GetOrCreateGCPrinter()
/minix/external/bsd/llvm/dist/llvm/lib/MC/
H A DMCContext.cpp278 auto IterBool = ELFUniquingMap.insert( in getELFSection() local
280 auto &Entry = *IterBool.first; in getELFSection()
281 if (!IterBool.second) return Entry.second; in getELFSection()
314 auto IterBool = COFFUniquingMap.insert(std::make_pair(T, nullptr)); in getCOFFSection() local
315 auto Iter = IterBool.first; in getCOFFSection()
316 if (!IterBool.second) in getCOFFSection()
H A DMCDwarf.cpp371 auto IterBool = SourceIdMap.insert( in getFile() local
373 if (!IterBool.second) in getFile()
374 return IterBool.first->second; in getFile()
/minix/external/bsd/llvm/dist/clang/lib/Basic/
H A DSourceManager.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()