Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/LTO/
DLTOModule.cpp271 auto IterBool = in addObjCClass() local
273 if (IterBool.second) { in addObjCClass()
274 NameAndAttributes &info = IterBool.first->second; in addObjCClass()
275 info.name = IterBool.first->first(); in addObjCClass()
307 auto IterBool = in addObjCCategory() local
310 if (!IterBool.second) in addObjCCategory()
313 NameAndAttributes &info = IterBool.first->second; in addObjCCategory()
314 info.name = IterBool.first->first(); in addObjCCategory()
326 auto IterBool = in addObjCClassRef() local
329 if (!IterBool.second) in addObjCClassRef()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
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()
103 auto IterBool = vmap.insert(std::make_pair(Name, V)); in createValueName() local
104 if (IterBool.second) { in createValueName()
107 return &*IterBool.first; in createValueName()
DType.cpp413 auto IterBool = in setName() local
417 if (!IterBool.second) { in setName()
427 IterBool = getContext().pImpl->NamedStructTypes.insert( in setName()
429 } while (!IterBool.second); in setName()
435 SymbolTableEntry = &*IterBool.first; in setName()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCContext.cpp407 auto IterBool = ELFUniquingMap.insert( in getELFSection() local
409 auto &Entry = *IterBool.first; in getELFSection()
410 if (!IterBool.second) in getELFSection()
450 auto IterBool = COFFUniquingMap.insert(std::make_pair(T, nullptr)); in getCOFFSection() local
451 auto Iter = IterBool.first; in getCOFFSection()
452 if (!IterBool.second) in getCOFFSection()
516 auto IterBool = WasmUniquingMap.insert( in getWasmSection() local
518 auto &Entry = *IterBool.first; in getWasmSection()
519 if (!IterBool.second) in getWasmSection()
546 auto IterBool = XCOFFUniquingMap.insert( in getXCOFFSection() local
[all …]
DMCDwarf.cpp581 auto IterBool = SourceIdMap.insert( in tryGetFile() local
584 if (!IterBool.second) in tryGetFile()
585 return IterBool.first->second; in tryGetFile()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TableGen/
DStringToOffsetTable.h32 auto IterBool = variable
34 if (IterBool.second) {
41 return IterBool.first->second;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DAddressPool.cpp21 auto IterBool = in getIndex() local
23 return IterBool.first->second.Number; in getIndex()
DAsmPrinter.cpp3106 auto IterBool = GCMap.insert(std::make_pair(&S, std::move(GMP))); in GetOrCreateGCPrinter() local
3107 return IterBool.first->second.get(); in GetOrCreateGCPrinter()