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

1 2

  /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/swiftshader/third_party/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/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
Regex.cpp 115 std::string Regex::sub(StringRef Repl, StringRef String,
131 while (!Repl.empty()) {
133 std::pair<StringRef, StringRef> Split = Repl.split('\\');
140 if (Repl.size() != Split.first.size() &&
147 Repl = Split.second;
150 switch (Repl[0]) {
153 Res += Repl[0];
154 Repl = Repl.substr(1);
160 Repl = Repl.substr(1)
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
Regex.cpp 110 std::string Regex::sub(StringRef Repl, StringRef String,
126 while (!Repl.empty()) {
128 std::pair<StringRef, StringRef> Split = Repl.split('\\');
135 if (Repl.size() != Split.first.size() &&
142 Repl = Split.second;
145 switch (Repl[0]) {
148 Res += Repl[0];
149 Repl = Repl.substr(1);
155 Repl = Repl.substr(1)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
GVNHoist.cpp 850 void makeGepsAvailable(Instruction *Repl, BasicBlock *HoistPt,
    [all...]
GVN.cpp     [all...]
NewGVN.cpp     [all...]
  /external/swiftshader/third_party/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/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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
Regex.h 77 /// \p String with the \p Repl string. Backreferences like "\0" in the
86 std::string sub(StringRef Repl, StringRef String,
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Regex.h 77 /// \p String with the \p Repl string. Backreferences like "\0" in the
86 std::string sub(StringRef Repl, StringRef String,
  /external/clang/tools/driver/
driver.cpp 125 std::string Repl = llvm::Regex(MatchPattern).sub(ReplPattern, Args[i]);
127 if (Repl != Args[i]) {
128 OS << "### Replacing '" << Args[i] << "' with '" << Repl << "'\n";
129 Args[i] = GetStableCStr(SavedStrings, Repl);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/
AArch64SIMDInstrOpt.cpp 298 for (auto &Repl : I.ReplOpc)
299 ReplInstrMCID.push_back(&TII->get(Repl));
525 for (auto &Repl : I.ReplOpc) {
526 ReplInstrMCID.push_back(&TII->get(Repl));
528 if (Repl != AArch64::STPQi && Repl != AArch64::STPDi)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Trim/
Trim.py 507 for Re,Repl in gImportCodePatterns:
509 NewLines = Re.sub(Repl, Lines)
511 NewLines = Re.sub(Repl, NewLines)
  /external/python/apitools/apitools/base/py/
app2.py 37 'Repl',
113 # that we can per-command flags in the REPL.
206 self._special_command_names = ['help', 'repl', 'EOF']
349 class Repl(NewCmd):
355 super(Repl, self).__init__(name, fv)
365 repl = CommandLoop(appcommands.GetCommandList(), prompt=prompt)
369 repl.cmdloop()
373 return repl.last_return_code
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
CodeGenPrepare.cpp 717 Value *Repl = Addr;
892 MemoryInst->replaceUsesOfWith(Repl, SunkAddr);
896 if (Repl->use_empty()) {
902 RecursivelyDeleteTriviallyDeadInstructions(Repl);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/AsmParser/
X86AsmParser.cpp 962 const char *Repl =
    [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp     [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp     [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplate.cpp 98 NamedDecl *Repl = isAcceptableTemplateName(Context, Orig,
100 if (!Repl)
102 else if (Repl != Orig) {
112 if (ClassTemplateDecl *ClassTmpl = dyn_cast<ClassTemplateDecl>(Repl))
123 filter.replace(Repl, AS_public);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]

Completed in 791 milliseconds

1 2