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

  /external/llvm/lib/Support/
Regex.cpp 98 std::string Regex::sub(StringRef Repl, StringRef String,
114 while (!Repl.empty()) {
116 std::pair<StringRef, StringRef> Split = Repl.split('\\');
123 if (Repl.size() != Split.first.size() &&
130 Repl = Split.second;
133 switch (Repl[0]) {
136 Res += Repl[0];
137 Repl = Repl.substr(1);
143 Repl = Repl.substr(1)
    [all...]
  /external/llvm/include/llvm/Support/
Regex.h 80 /// \p String with the \p Repl string. Backreferences like "\0" in the
89 std::string sub(StringRef Repl, StringRef String,
  /external/clang/tools/driver/
driver.cpp 124 std::string Repl = llvm::Regex(MatchPattern).sub(ReplPattern, Args[i]);
126 if (Repl != Args[i]) {
127 OS << "### Replacing '" << Args[i] << "' with '" << Repl << "'\n";
128 Args[i] = GetStableCStr(SavedStrings, Repl);
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 2327 Value *repl = findLeader(I->getParent(), Num); local
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp     [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplate.cpp 96 NamedDecl *Repl = isAcceptableTemplateName(Context, Orig,
98 if (!Repl)
100 else if (Repl != Orig) {
110 if (ClassTemplateDecl *ClassTmpl = dyn_cast<ClassTemplateDecl>(Repl))
121 filter.replace(Repl, AS_public);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]

Completed in 331 milliseconds