HomeSort by relevance Sort by last modified time
    Searched refs:IterBool (Results 1 - 19 of 19) 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));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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/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;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/TableGen/
StringToOffsetTable.h 31 auto IterBool =
33 if (IterBool.second) {
40 return IterBool.first->second;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/TableGen/
StringToOffsetTable.h 31 auto IterBool =
33 if (IterBool.second) {
40 return IterBool.first->second;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/TableGen/
StringToOffsetTable.h 31 auto IterBool =
33 if (IterBool.second) {
40 return IterBool.first->second;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/TableGen/
StringToOffsetTable.h 31 auto IterBool =
33 if (IterBool.second) {
40 return IterBool.first->second;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/TableGen/
StringToOffsetTable.h 31 auto IterBool =
33 if (IterBool.second) {
40 return IterBool.first->second;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/TableGen/
StringToOffsetTable.h 31 auto IterBool =
33 if (IterBool.second) {
40 return IterBool.first->second;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/TableGen/
StringToOffsetTable.h 31 auto IterBool =
33 if (IterBool.second) {
40 return IterBool.first->second;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/TableGen/
StringToOffsetTable.h 31 auto IterBool =
33 if (IterBool.second) {
40 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/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 975 milliseconds