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

  /external/llvm/lib/Support/
Regex.cpp 94 std::string Regex::sub(StringRef Repl, StringRef String,
110 while (!Repl.empty()) {
112 std::pair<StringRef, StringRef> Split = Repl.split('\\');
119 if (Repl.size() != Split.first.size() &&
126 Repl = Split.second;
129 switch (Repl[0]) {
132 Res += Repl[0];
133 Repl = Repl.substr(1);
139 Repl = Repl.substr(1)
    [all...]
  /external/llvm/include/llvm/Support/
Regex.h 64 /// \arg String with the \arg Repl string. Backreferences like "\0" in the
73 std::string sub(StringRef Repl, StringRef String, std::string *Error = 0);
  /external/clang/tools/driver/
driver.cpp 114 std::string Repl = llvm::Regex(MatchPattern).sub(ReplPattern, Args[i]);
116 if (Repl != Args[i]) {
117 OS << "### Replacing '" << Args[i] << "' with '" << Repl << "'\n";
118 Args[i] = SaveStringInSet(SavedStrings, Repl);
  /external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp 752 Value *Repl = Addr;
    [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplate.cpp 93 NamedDecl *Repl = isAcceptableTemplateName(Context, Orig,
95 if (!Repl)
97 else if (Repl != Orig) {
107 if (ClassTemplateDecl *ClassTmpl = dyn_cast<ClassTemplateDecl>(Repl))
118 filter.replace(Repl, AS_public);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]

Completed in 704 milliseconds