/external/llvm/lib/Support/ |
Regex.cpp | 96 std::string Regex::sub(StringRef Repl, StringRef String, 112 while (!Repl.empty()) { 114 std::pair<StringRef, StringRef> Split = Repl.split('\\'); 121 if (Repl.size() != Split.first.size() && 128 Repl = Split.second; 131 switch (Repl[0]) { 134 Res += Repl[0]; 135 Repl = Repl.substr(1); 141 Repl = Repl.substr(1) [all...] |
/external/llvm/include/llvm/Support/ |
Regex.h | 69 /// \p String with the \p Repl string. Backreferences like "\0" in the 78 std::string sub(StringRef Repl, StringRef String, std::string *Error = 0);
|
/external/clang/tools/driver/ |
driver.cpp | 117 std::string Repl = llvm::Regex(MatchPattern).sub(ReplPattern, Args[i]); 119 if (Repl != Args[i]) { 120 OS << "### Replacing '" << Args[i] << "' with '" << Repl << "'\n"; 121 Args[i] = SaveStringInSet(SavedStrings, Repl);
|
/external/llvm/lib/Transforms/Scalar/ |
GVN.cpp | 2266 Value *repl = findLeader(I->getParent(), Num); local [all...] |
CodeGenPrepare.cpp | [all...] |
/external/llvm/lib/Target/X86/AsmParser/ |
X86AsmParser.cpp | [all...] |
/external/clang/lib/Sema/ |
SemaTemplate.cpp | 94 NamedDecl *Repl = isAcceptableTemplateName(Context, Orig, 96 if (!Repl) 98 else if (Repl != Orig) { 108 if (ClassTemplateDecl *ClassTmpl = dyn_cast<ClassTemplateDecl>(Repl)) 119 filter.replace(Repl, AS_public); [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
TargetLowering.cpp | [all...] |