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

1 2 3 4 5 6 7

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
formatter.hpp 22 // generic replace functors -----------------------------------------------//
71 const RangeT& operator()(const Range2T& Replace) const
73 return RangeT(::boost::begin(Replace), ::boost::end(Replace));
105 operator()(const RangeT& Replace) const
107 return m_Finder(::boost::begin(Replace), ::boost::end(Replace));
  /external/v8/src/compiler/
simplified-operator-reducer.cc 29 return Replace(jsgraph()->BooleanConstant(!m.Value()->BooleanValue()));
31 if (m.IsBooleanNot()) return Replace(m.InputAt(0));
36 if (m.Is(0)) return Replace(jsgraph()->FalseConstant());
37 if (m.Is(1)) return Replace(jsgraph()->TrueConstant());
38 if (m.IsChangeBoolToBit()) return Replace(m.InputAt(0));
44 if (m.IsChangeBitToBool()) return Replace(m.InputAt(0));
60 if (m.IsChangeFloat64ToTagged()) return Replace(m.node()->InputAt(0));
75 if (m.IsChangeInt32ToTagged()) return Replace(m.InputAt(0));
84 if (m.IsChangeUint32ToTagged()) return Replace(m.InputAt(0));
109 return Replace(jsgraph()->TrueConstant())
    [all...]
graph-reducer.h 57 static Reduction Replace(Node* node) { return Reduction(node); }
71 // Replace {node} with {replacement}.
72 virtual void Replace(Node* node, Node* replacement) = 0;
75 // Replace value uses of {node} with {value} and effect uses of {node} with
87 static Reduction Replace(Node* node) { return Reducer::Replace(node); }
90 void Replace(Node* node, Node* replacement) {
92 editor_->Replace(node, replacement);
106 // TODO(turbofan): replace the effect input to {node} with {graph->start()}.
149 // Replace {node} with {replacement}
    [all...]
machine-operator-reducer.h 52 return Replace(Float32Constant(value));
55 return Replace(Float64Constant(value));
58 return Replace(Int32Constant(value));
61 return Replace(Uint32Constant(value));
64 return Replace(Int64Constant(value));
dead-code-elimination.cc 53 return Replace(dead());
93 return Replace(dead());
98 Replace(use, use->InputAt(0));
101 Replace(use, dead());
104 return Replace(node->InputAt(0));
127 // replace {node} with {Dead}.
132 if (control->opcode() == IrOpcode::kDead) return Replace(control);
load-elimination.cc 40 return Replace(value);
49 return Replace(value);
js-builtin-reducer.cc 98 return Replace(jsgraph()->Constant(-V8_INFINITY));
102 return Replace(r.left());
114 return Replace(value);
126 return Replace(value);
139 return Replace(value);
165 // Replace builtin call assuming replacement nodes are pure values that don't
machine-operator-reducer.cc 140 if (m.right().Is(0)) return Replace(m.left().node()); // x ^ 0 => x
148 return Replace(mleft.left().node());
157 if (m.right().Is(0)) return Replace(m.left().node()); // x >>> 0 => x
167 if (m.right().Is(0)) return Replace(m.left().node()); // x ror 0 => x
210 if (m.right().Is(0)) return Replace(m.right().node()); // x * 0 => 0
211 if (m.right().Is(1)) return Replace(m.left().node()); // x * 1 => x
315 return Replace(m.right().node());
325 return Replace(m.left().node()); // x - 0 => x
328 return Replace(m.right().node());
331 return Replace(m.left().node())
    [all...]
  /external/clang/test/SemaTemplate/
deduction.cpp 38 struct Replace {
44 struct Replace<_1, Arg1, Arg2> {
49 struct Replace<_2, Arg1, Arg2> {
55 struct Replace<const T, Arg1, Arg2> {
56 typedef typename Replace<T, Arg1, Arg2>::type const type;
61 struct Replace<TT<T1>, Arg1, Arg2> {
62 typedef TT<typename Replace<T1, Arg1, Arg2>::type> type;
67 struct Replace<TT<T1, T2>, Arg1, Arg2> {
68 typedef TT<typename Replace<T1, Arg1, Arg2>::type,
69 typename Replace<T2, Arg1, Arg2>::type> type
    [all...]
  /external/lzma/CPP/7zip/Archive/Common/
ItemNameUtils.cpp 31 zipName.Replace(kOSDirDelimiter, kDirDelimiter);
38 newName.Replace(kDirDelimiter, kOSDirDelimiter);
56 name.Replace(kDirDelimiter, kOSDirDelimiter);
83 newName.Replace(L'\\', kOSDirDelimiter);
  /external/v8/test/unittests/compiler/
graph-reducer-unittest.h 17 MOCK_METHOD2(Replace, void(Node*, Node*));
  /external/clang/lib/Tooling/
RefactoringCallbacks.cpp 20 return Replace;
43 Replace.insert(tooling::Replacement(
58 Replace.insert(replaceStmtWithStmt(
71 Replace.insert(replaceStmtWithStmt(*Result.SourceManager, *Node, *Body));
75 Replace.insert(replaceStmtWithText(*Result.SourceManager, *Node, ""));
Refactoring.cpp 33 Replacements &RefactoringTool::getReplacements() { return Replace; }
57 return tooling::applyAllReplacements(Replace, Rewrite);
  /external/mesa3d/src/gallium/targets/
SConscript.dri 11 drienv.Replace(CPPPATH = [
  /external/v8/test/mjsunit/es6/
debug-liveedit-new-target-2.js 23 function Replace(fun, original, patch) {
43 Replace(LogNewTarget, "true", "new.target");
48 Replace(LogNewTarget, "new.target", "true");
62 assertEquals(1, exceptions); // Replace failed.
debug-liveedit-new-target-3.js 28 function Replace(fun, original, patch) {
45 Replace(Wrapper, "true", "false");
50 Replace(Wrapper, "false", "true");
59 assertEquals(0, exceptions); // Replace succeeds
65 assertEquals(0, exceptions); // Replace succeeds
72 assertEquals(0, exceptions); // Replace succeeds
debug-liveedit-new-target-1.js 26 function Replace(fun, original, patch) {
46 Replace(LogNewTarget, "true", "false");
51 Replace(LogNewTarget, "false", "true");
75 assertEquals(3, exceptions); // Replace failed.
  /external/clang/include/clang/Tooling/
Refactoring.h 68 Replacements Replace;
  /external/lzma/CPP/7zip/UI/FileManager/
FormatUtils.cpp 21 result.Replace(L"{0}", argument);
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
ZipExtractorTask.java 45 private static enum Replace {
179 Replace answer = showDialog(entry.getName());
219 private Replace showDialog(final String name) {
220 final FutureResult<Replace> mResult = new FutureResult<Replace>();
227 builder.setMessage(String.format("Do you want to replace script \"%s\" ?", name));
232 Replace result = Replace.SKIPALL;
235 result = Replace.YES;
238 result = Replace.NO
    [all...]
  /external/clang/unittests/Tooling/
RefactoringTest.cpp 47 Replacement Replace(createReplacement(Location, 4, ""));
48 EXPECT_TRUE(Replace.apply(Context.Rewrite));
55 Replacement Replace(createReplacement(Location, 17, ""));
56 EXPECT_TRUE(Replace.apply(Context.Rewrite));
63 Replacement Replace(createReplacement(Location, 0, "result"));
64 EXPECT_TRUE(Replace.apply(Context.Rewrite));
72 Replacement Replace(createReplacement(Location, 12, "x"));
73 EXPECT_TRUE(Replace.apply(Context.Rewrite));
94 Replacement Replace("nonexistent-file.cpp", 0, 1, "");
95 EXPECT_FALSE(Replace.apply(Context.Rewrite))
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ClassicToken.cs 165 txt = txt.Replace("\n", "\\\\n");
166 txt = txt.Replace("\r", "\\\\r");
167 txt = txt.Replace("\t", "\\\\t");
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ClassicToken.cs 201 txt = txt.Replace( "\n", "\\\\n" );
202 txt = txt.Replace( "\r", "\\\\r" );
203 txt = txt.Replace( "\t", "\\\\t" );
CommonToken.cs 242 txt = Regex.Replace( txt, "\n", "\\\\n" );
243 txt = Regex.Replace( txt, "\r", "\\\\r" );
244 txt = Regex.Replace( txt, "\t", "\\\\t" );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringExtensions.cs 97 public static string replace(this string str, char oldValue, char newValue) method in class:Antlr.Runtime.JavaExtensions.StringExtensions
99 return str.Replace(oldValue, newValue);
105 return Regex.Replace( str, regex, newValue );
110 return Regex.Replace( str, regex, replacement );

Completed in 443 milliseconds

1 2 3 4 5 6 7