HomeSort by relevance Sort by last modified time
    Searched refs:IterBool (Results 1 - 18 of 18) sorted by null

  /external/llvm/lib/IR/
ValueSymbolTable.cpp 47 auto IterBool = vmap.insert(std::make_pair(UniqueName, V));
48 if (IterBool.second)
49 return &*IterBool.first;
85 auto IterBool = vmap.insert(std::make_pair(Name, V));
86 if (IterBool.second) {
89 return &*IterBool.first;
Type.cpp 389 auto IterBool =
393 if (!IterBool.second) {
403 IterBool = getContext().pImpl->NamedStructTypes.insert(
405 } while (!IterBool.second);
411 SymbolTableEntry = &*IterBool.first;
  /external/libcxx/test/std/containers/associative/map/
compare.pass.cpp 32 typedef std::pair<Iter, bool> IterBool;
45 IterBool result = map.insert(std::make_pair(Key(0), 42));
48 IterBool result2 = map.insert(std::make_pair(Key(0), 43));
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
ValueSymbolTable.cpp 65 auto IterBool = vmap.insert(std::make_pair(UniqueName, V));
66 if (IterBool.second)
67 return &*IterBool.first;
104 auto IterBool = vmap.insert(std::make_pair(Name, V));
105 if (IterBool.second) {
108 return &*IterBool.first;
Type.cpp 396 auto IterBool =
400 if (!IterBool.second) {
410 IterBool = getContext().pImpl->NamedStructTypes.insert(
412 } while (!IterBool.second);
418 SymbolTableEntry = &*IterBool.first;
  /external/llvm/lib/CodeGen/AsmPrinter/
AddressPool.cpp 21 auto IterBool =
23 return IterBool.first->second.Number;
AsmPrinter.cpp     [all...]
  /external/llvm/include/llvm/TableGen/
StringToOffsetTable.h 31 auto IterBool =
33 if (IterBool.second) {
40 return IterBool.first->second;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/TableGen/
StringToOffsetTable.h 33 auto IterBool =
35 if (IterBool.second) {
42 return IterBool.first->second;
  /external/llvm/lib/LTO/
LTOModule.cpp 280 auto IterBool =
282 if (IterBool.second) {
283 NameAndAttributes &info = IterBool.first->second;
284 info.name = IterBool.first->first().data();
316 auto IterBool =
319 if (!IterBool.second)
322 NameAndAttributes &info = IterBool.first->second;
323 info.name = IterBool.first->first().data();
335 auto IterBool =
338 if (!IterBool.second
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/LTO/
LTOModule.cpp 270 auto IterBool =
272 if (IterBool.second) {
273 NameAndAttributes &info = IterBool.first->second;
274 info.name = IterBool.first->first();
306 auto IterBool =
309 if (!IterBool.second)
312 NameAndAttributes &info = IterBool.first->second;
313 info.name = IterBool.first->first();
325 auto IterBool =
328 if (!IterBool.second
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/
AddressPool.cpp 22 auto IterBool =
24 return IterBool.first->second.Number;
AsmPrinter.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
MCContext.cpp 394 auto IterBool = ELFUniquingMap.insert(
396 auto &Entry = *IterBool.first;
397 if (!IterBool.second)
437 auto IterBool = COFFUniquingMap.insert(std::make_pair(T, nullptr));
438 auto Iter = IterBool.first;
439 if (!IterBool.second)
511 auto IterBool = WasmUniquingMap.insert(
513 auto &Entry = *IterBool.first;
514 if (!IterBool.second)
MCDwarf.cpp 569 auto IterBool = SourceIdMap.insert(
572 if (!IterBool.second)
573 return IterBool.first->second;
    [all...]
  /external/llvm/lib/MC/
MCContext.cpp 355 auto IterBool = ELFUniquingMap.insert(
357 auto &Entry = *IterBool.first;
358 if (!IterBool.second)
402 auto IterBool = COFFUniquingMap.insert(std::make_pair(T, nullptr));
403 auto Iter = IterBool.first;
404 if (!IterBool.second)
MCDwarf.cpp 351 auto IterBool = SourceIdMap.insert(
354 if (!IterBool.second)
355 return IterBool.first->second;
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp 180 auto IterBool =
182 if (IterBool.second)
183 FilenamesByID.push_back(&*IterBool.first);
184 return IterBool.first->second;
    [all...]

Completed in 490 milliseconds