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

  /external/llvm/lib/MC/
MCContext.cpp 153 SmallString<128> NewName = Name;
158 NewName.resize(Name.size());
159 raw_svector_ostream(NewName) << NextUniqueID++;
161 auto NameEntry = UsedNames.insert(std::make_pair(NewName, true));
  /external/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 481 std::string NewName = std::string(Suffix) + ".split-lp";
483 SplitLandingPadPredecessors(BB, Preds, Suffix, NewName.c_str(),
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 397 std::string NewName;
402 NewName = Name;
405 if (NewName.find_first_of("0123456789") == 0) {
406 NewName.insert(0, 1, 'n');
413 while ((pos = NewName.find_first_not_of(legal_elements)) !=
415 char old_c = NewName.at(pos);
418 NewName = NewName.replace(pos, 1, new_str);
421 return NewName;
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp     [all...]
  /external/clang/lib/Lex/
PPDirectives.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy.cpp 643 std::string NewName;
648 NewName = Name;
651 if (NewName.find_first_of("0123456789") == 0) {
652 NewName.insert(0, 1, 'n');
658 while ((pos = NewName.find_first_not_of(legal_elements)) != std::string::npos) {
659 char old_c = NewName.at(pos);
662 NewName = NewName.replace(pos, 1, new_str);
665 return NewName;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 662 std::string NewName;
667 NewName = Name;
670 if (NewName.find_first_of("0123456789") == 0) {
671 NewName.insert(0, 1, 'n');
677 while ((pos = NewName.find_first_not_of(legal_elements)) != std::string::npos) {
678 char old_c = NewName.at(pos);
681 NewName = NewName.replace(pos, 1, new_str);
684 return NewName;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 620 std::string NewName;
625 NewName = Name;
628 if (NewName.find_first_of("0123456789") == 0) {
629 NewName.insert(0, 1, 'n');
635 while ((pos = NewName.find_first_not_of(legal_elements)) != std::string::npos) {
636 char old_c = NewName.at(pos);
639 NewName = NewName.replace(pos, 1, new_str);
642 return NewName;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy.cpp 622 std::string NewName;
627 NewName = Name;
630 if (NewName.find_first_of("0123456789") == 0) {
631 NewName.insert(0, 1, 'n');
637 while ((pos = NewName.find_first_not_of(legal_elements)) != std::string::npos) {
638 char old_c = NewName.at(pos);
641 NewName = NewName.replace(pos, 1, new_str);
644 return NewName;
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 661 std::string NewName;
665 NewName = Name;
668 if (NewName.find_first_of("0123456789") == 0) {
669 NewName.insert(0, 1, 'n');
675 while ((pos = NewName.find_first_not_of(legal_elements)) != std::string::npos) {
677 NumStream << (int)NewName.at(pos);
678 NewName = NewName.replace(pos, 1, NumStream.str());
681 return NewName;
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 660 std::string NewName;
664 NewName = Name;
667 if (NewName.find_first_of("0123456789") == 0) {
668 NewName.insert(0, 1, 'n');
674 while ((pos = NewName.find_first_not_of(legal_elements)) != std::string::npos) {
676 NumStream << (int)NewName.at(pos);
677 NewName = NewName.replace(pos, 1, NumStream.str());
680 return NewName;
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 660 std::string NewName;
664 NewName = Name;
667 if (NewName.find_first_of("0123456789") == 0) {
668 NewName.insert(0, 1, 'n');
674 while ((pos = NewName.find_first_not_of(legal_elements)) != std::string::npos) {
676 NumStream << (int)NewName.at(pos);
677 NewName = NewName.replace(pos, 1, NumStream.str());
680 return NewName;
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 660 std::string NewName;
664 NewName = Name;
667 if (NewName.find_first_of("0123456789") == 0) {
668 NewName.insert(0, 1, 'n');
674 while ((pos = NewName.find_first_not_of(legal_elements)) != std::string::npos) {
676 NumStream << (int)NewName.at(pos);
677 NewName = NewName.replace(pos, 1, NumStream.str());
680 return NewName;
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp     [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp     [all...]
  /external/clang/lib/Sema/
SemaExprCXX.cpp     [all...]
TreeTransform.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
wdm.h     [all...]

Completed in 869 milliseconds