Searched defs:IterBool (Results 1 - 10 of 10) sorted by relevance

/external/llvm/lib/CodeGen/AsmPrinter/
H A DAddressPool.cpp21 auto IterBool = local
23 return IterBool.first->second.Number;
H A DAsmPrinter.cpp2551 auto IterBool = GCMap.insert(std::make_pair(&S, std::move(GMP))); local
2552 return IterBool.first->second.get();
/external/libcxx/test/std/containers/associative/map/
H A Dcompare.pass.cpp32 typedef std::pair<Iter, bool> IterBool; typedef
45 IterBool result = map.insert(std::make_pair(Key(0), 42));
48 IterBool result2 = map.insert(std::make_pair(Key(0), 43));
/external/llvm/include/llvm/TableGen/
H A DStringToOffsetTable.h31 auto IterBool = local
33 if (IterBool.second) {
40 return IterBool.first->second;
/external/llvm/lib/IR/
H A DValueSymbolTable.cpp47 auto IterBool = vmap.insert(std::make_pair(UniqueName, V)); local
48 if (IterBool.second)
49 return &*IterBool.first;
85 auto IterBool = vmap.insert(std::make_pair(Name, V)); local
86 if (IterBool.second) {
89 return &*IterBool.first;
H A DType.cpp457 auto IterBool = local
461 if (!IterBool.second) {
471 IterBool = getContext().pImpl->NamedStructTypes.insert(
473 } while (!IterBool.second);
479 SymbolTableEntry = &*IterBool.first;
/external/llvm/lib/LTO/
H A DLTOModule.cpp278 auto IterBool = local
280 if (IterBool.second) {
281 NameAndAttributes &info = IterBool.first->second;
282 info.name = IterBool.first->first().data();
314 auto IterBool =
317 if (!IterBool.second)
320 NameAndAttributes &info = IterBool.first->second;
321 info.name = IterBool.first->first().data();
333 auto IterBool =
336 if (!IterBool
487 auto IterBool = _defines.insert(name); local
528 auto IterBool = _undefines.insert(std::make_pair(name, NameAndAttributes())); local
554 auto IterBool = _undefines.insert(std::make_pair(name, NameAndAttributes())); local
[all...]
/external/llvm/lib/MC/
H A DMCContext.cpp350 auto IterBool = ELFUniquingMap.insert( local
352 auto &Entry = *IterBool.first;
353 if (!IterBool.second)
395 auto IterBool = COFFUniquingMap.insert(std::make_pair(T, nullptr)); local
396 auto Iter = IterBool.first;
397 if (!IterBool.second)
H A DMCDwarf.cpp351 auto IterBool = SourceIdMap.insert( local
354 if (!IterBool.second)
355 return IterBool.first->second;
/external/clang/lib/Basic/
H A DSourceManager.cpp180 auto IterBool = local
182 if (IterBool.second)
183 FilenamesByID.push_back(&*IterBool.first);
184 return IterBool.first->second;

Completed in 194 milliseconds