Home
last modified time | relevance | path

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

/external/llvm/lib/LTO/
DLTOModule.cpp278 auto IterBool = in addObjCClass() local
280 if (IterBool.second) { in addObjCClass()
281 NameAndAttributes &info = IterBool.first->second; in addObjCClass()
282 info.name = IterBool.first->first().data(); in addObjCClass()
314 auto IterBool = in addObjCCategory() local
317 if (!IterBool.second) in addObjCCategory()
320 NameAndAttributes &info = IterBool.first->second; in addObjCCategory()
321 info.name = IterBool.first->first().data(); in addObjCCategory()
333 auto IterBool = in addObjCClassRef() local
336 if (!IterBool.second) in addObjCClassRef()
[all …]
/external/llvm/lib/IR/
DValueSymbolTable.cpp47 auto IterBool = vmap.insert(std::make_pair(UniqueName, V)); in makeUniqueName() local
48 if (IterBool.second) in makeUniqueName()
49 return &*IterBool.first; in makeUniqueName()
85 auto IterBool = vmap.insert(std::make_pair(Name, V)); in createValueName() local
86 if (IterBool.second) { in createValueName()
89 return &*IterBool.first; in createValueName()
DType.cpp457 auto IterBool = in setName() local
461 if (!IterBool.second) { in setName()
471 IterBool = getContext().pImpl->NamedStructTypes.insert( in setName()
473 } while (!IterBool.second); in setName()
479 SymbolTableEntry = &*IterBool.first; in setName()
/external/libcxx/test/std/containers/associative/map/
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()
/external/llvm/include/llvm/TableGen/
DStringToOffsetTable.h31 auto IterBool = variable
33 if (IterBool.second) {
40 return IterBool.first->second;
/external/llvm/lib/CodeGen/AsmPrinter/
DAddressPool.cpp21 auto IterBool = in getIndex() local
23 return IterBool.first->second.Number; in getIndex()
DAsmPrinter.cpp2551 auto IterBool = GCMap.insert(std::make_pair(&S, std::move(GMP))); in GetOrCreateGCPrinter() local
2552 return IterBool.first->second.get(); in GetOrCreateGCPrinter()
/external/llvm/lib/MC/
DMCContext.cpp350 auto IterBool = ELFUniquingMap.insert( in getELFSection() local
352 auto &Entry = *IterBool.first; in getELFSection()
353 if (!IterBool.second) in getELFSection()
395 auto IterBool = COFFUniquingMap.insert(std::make_pair(T, nullptr)); in getCOFFSection() local
396 auto Iter = IterBool.first; in getCOFFSection()
397 if (!IterBool.second) in getCOFFSection()
DMCDwarf.cpp351 auto IterBool = SourceIdMap.insert( in getFile() local
354 if (!IterBool.second) in getFile()
355 return IterBool.first->second; in getFile()
/external/clang/lib/Basic/
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()