HomeSort by: relevance | last modified time | path
    Searched defs:Replace (Results 1 - 8 of 8) sorted by relevancy

  /src/external/public-domain/sqlite/dist/
Replace.cs 26 [assembly: AssemblyTitle("Replace Tool")]
27 [assembly: AssemblyDescription("Replace text using standard input/output.")]
44 namespace Replace
83 internal static class Replace
197 string outputLine = regEx.Replace(inputLine, replacement);
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
RefactoringCallbacks.h 12 // subtree match on the AST and then replace the corresponding source code
24 // This will replace all integer literals with "42".
46 Replacements Replace;
76 /// Replace the text of the statement bound to \c FromId with the text in
88 /// Replace the text of an AST node bound to \c FromId with the result of
111 /// Replace the text of the statement bound to \c FromId with the text of
123 /// Replace an if-statement bound to \c Id with the outdented text of its
  /src/external/bsd/pkg_install/dist/add/
main.c 58 int Replace = 0;
130 Replace = 1;
134 Replace = 1;
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerCorpus.h 156 void Replace(InputInfo *II, const Unit &U) {
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
USRLocFinder.cpp 537 auto Replace = [&](SourceLocation Start, SourceLocation End,
540 llvm::Error Err = ReplaceChange.replace(
589 Replace(RenameInfo.Begin, RenameInfo.End, ReplacedName);
595 Replace(Using->getBeginLoc(), Using->getEndLoc(), "using " + NewName.str());
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
InferAddressSpaces.cpp 700 // If !IsNew, we will replace the Value with itself. However, replaced values
1072 Constant *Replace = ConstantExpr::getAddrSpaceCast(cast<Constant>(NewV),
1074 if (C != Replace) {
1075 LLVM_DEBUG(dbgs() << "Inserting replacement const cast: " << Replace
1076 << ": " << *Replace << '\n');
1077 C->replaceAllUsesWith(Replace);
1078 V = Replace;
  /src/external/apache2/llvm/dist/clang/lib/Format/
Format.cpp 1573 auto Replace = [&](SourceLocation Start, unsigned Length,
1584 Replace(Start, 1, IsSingle ? "'" : "\"");
1585 Replace(FormatTok->Tok.getEndLoc().getLocWithOffset(-1), 1,
1598 Replace(Start.getLocWithOffset(i), 1, "");
1607 Replace(Start.getLocWithOffset(i), 0, "\\");
2232 // Replace all "\r\n" with "\n".
2670 inline bool isHeaderInsertion(const tooling::Replacement &Replace) {
2671 return Replace.getOffset() == UINT_MAX && Replace.getLength() == 0 &&
2673 .match(Replace.getReplacementText())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 136 "combiner-shrink-load-replace-store-with-store", cl::Hidden, cl::init(true),
137 cl::desc("DAG cominber enable load/<replace bytes>/store with "
368 /// Replace an ISD::EXTRACT_VECTOR_ELT of a load with a narrowed
380 SDValue PromoteOperand(SDValue Op, EVT PVT, bool &Replace);
622 /// Try to replace a store and any possibly adjacent stores on
1135 // Replace the old value with the new one.
1141 // Replace all uses. If any nodes become isomorphic to other nodes and
1207 SDValue DAGCombiner::PromoteOperand(SDValue Op, EVT PVT, bool &Replace) {
1208 Replace = false;
1215 Replace = true
    [all...]

Completed in 93 milliseconds