Searched refs:Repl (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DRegex.cpp94 std::string Regex::sub(StringRef Repl, StringRef String, argument
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
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DRegex.h64 /// \p String with the \p Repl string. Backreferences like "\0" in the
73 std::string sub(StringRef Repl, StringRef String, std::string *Error = 0);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Scalar/
H A DCodeGenPrepare.cpp907 Value *Repl = Addr; local
1082 MemoryInst->replaceUsesOfWith(Repl, SunkAddr);
1086 if (Repl->use_empty()) {
1092 RecursivelyDeleteTriviallyDeadInstructions(Repl, TLInfo);
H A DGVN.cpp1740 static void patchReplacementInstruction(Value *Repl, Instruction *I) { argument
1744 BinaryOperator *ReplOp = dyn_cast<BinaryOperator>(Repl);
1752 if (Instruction *ReplInst = dyn_cast<Instruction>(Repl)) {
1782 static void patchAndReplaceAllUsesWith(Value *Repl, Instruction *I) { argument
1783 patchReplacementInstruction(Repl, I);
1784 I->replaceAllUsesWith(Repl);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp1775 const char *Repl = local
1786 assert(Repl && "Unknown wait-prefixed instruction");
1788 Operands[0] = X86Operand::CreateToken(Repl, IDLoc);
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp3250 if (const char *Repl = LowerXConstraint(OpInfo.ConstraintVT)) {
3251 OpInfo.ConstraintCode = Repl;

Completed in 132 milliseconds