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

1 2 3

  /external/v8/test/mjsunit/
debug-liveedit-exceptions.js 25 Replace(BestEditor, "Emacs", "Eclipse");
28 Replace(BestEditor, "Eclipse", "Vim");
40 function Replace(fun, original, patch) {
debug-liveedit-stepin.js 27 Replace(BestEditor, "Emacs", "Eclipse");
30 Replace(BestEditor, "Eclipse", "Vim");
42 function Replace(fun, original, patch) {
  /external/clang/include/clang/Tooling/
Refactoring.h 68 Replacements Replace;
RefactoringCallbacks.h 13 // subtree match on the AST and then replace the corresponding source code
25 // This will replace all integer literals with "42".
47 Replacements Replace;
50 /// \brief Replace the text of the statement bound to \c FromId with the text in
62 /// \brief Replace the text of the statement bound to \c FromId with the text of
74 /// \brief Replace an if-statement bound to \c Id with the outdented text of its
  /external/v8/test/mjsunit/es6/
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.
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
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
rewrite.rb 61 The three subclasses of RewriteOperation, InsertBefore, Delete, and Replace,
118 =begin rdoc ANTLR3::TokenRewriteStream::Replace
127 class Replace < RewriteOperation
129 @operation_name = 'replace'.freeze
165 class Delete < Replace
180 def replace( *range_arguments ) method in class:ANTLR3.RewriteProgram
183 op = Replace.new( @stream, range, text )
220 when Replace
227 when Replace
245 when Replace
408 def replace( *args ) method
    [all...]
  /external/lzma/CPP/Windows/Control/
ImageList.h 65 int Replace(int index, HICON icon)
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenRewriteStream.cs 45 * You can insert stuff, replace, and delete chunks. Note that the
275 public virtual void Replace(int index, object text) {
276 Replace(DEFAULT_PROGRAM_NAME, index, index, text);
279 public virtual void Replace(int from, int to, object text) {
280 Replace(DEFAULT_PROGRAM_NAME, from, to, text);
283 public virtual void Replace(IToken indexT, object text) {
284 Replace(DEFAULT_PROGRAM_NAME, indexT, indexT, text);
287 public virtual void Replace(IToken from, IToken to, object text) {
288 Replace(DEFAULT_PROGRAM_NAME, from, to, text);
291 public virtual void Replace(string programName, int from, int to, object text)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenRewriteStream.cs 48 * You can insert stuff, replace, and delete chunks. Note that the
312 public virtual void Replace( int index, object text )
314 Replace( DEFAULT_PROGRAM_NAME, index, index, text );
317 public virtual void Replace( int from, int to, object text )
319 Replace( DEFAULT_PROGRAM_NAME, from, to, text );
322 public virtual void Replace( IToken indexT, object text )
324 Replace( DEFAULT_PROGRAM_NAME, indexT, indexT, text );
327 public virtual void Replace( IToken from, IToken to, object text )
329 Replace( DEFAULT_PROGRAM_NAME, from, to, text );
332 public virtual void Replace( string programName, int from, int to, object text
    [all...]
  /external/v8/src/compiler/
graph-reducer.cc 154 Replace(node, replacement, max_id);
165 void GraphReducer::Replace(Node* node, Node* replacement) {
166 Replace(node, replacement, std::numeric_limits<NodeId>::max());
170 void GraphReducer::Replace(Node* node, Node* replacement, NodeId max_id) {
185 // Replace all old uses of {node} with {replacement}, but allow new nodes
219 Replace(user, control);
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
86 static Reduction Replace(Node* node) { return Reducer::Replace(node); }
89 void Replace(Node* node, Node* replacement) {
91 editor_->Replace(node, replacement);
105 // TODO(turbofan): replace the effect input to {node} with {graph->start()}.
148 // Replace {node} with {replacement}
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
metafunctions.cpp 54 namespace Replace {
  /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/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/libchrome/base/
id_map.h 62 // Sets whether Add and Replace should DCHECK if passed in NULL data.
109 T* Replace(KeyType id, T* new_data) {
114 NOTREACHED() << "Attempting to replace an item not in the list";
  /external/lzma/CPP/Common/
MyString.cpp 637 void AString::Replace(char oldChar, char newChar) throw()
655 void AString::Replace(const AString &oldString, const AString &newString)
1101 void UString::Replace(wchar_t oldChar, wchar_t newChar) throw()
1119 void UString::Replace(const UString &oldString, const UString &newString)
  /external/mesa3d/src/gallium/drivers/radeon/
R600KernelParameters.cpp 72 void Replace(Function *Fun);
222 void R600KernelParameters::Replace(Function* Fun) {
432 Replace(&F);
  /external/pdfium/xfa/src/fwl/src/lightwidget/
edit.cpp 132 FWL_ERR CFWL_Edit::Replace(int32_t nStart,
137 return static_cast<IFWL_Edit*>(m_pIface)->Replace(nStart, nLen, wsReplace);
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
ZipExtractorTask.java 43 private static enum Replace {
177 Replace answer = showDialog(entry.getName());
217 private Replace showDialog(final String name) {
218 final FutureResult<Replace> mResult = new FutureResult<Replace>();
225 builder.setMessage(String.format("Do you want to replace script \"%s\" ?", name));
230 Replace result = Replace.SKIPALL;
233 result = Replace.YES;
236 result = Replace.NO
    [all...]
  /external/pcre/dist/
pcrecpp.cc 332 bool RE::Replace(const StringPiece& rewrite,
345 str->replace(vec[0], vec[1] - vec[0], s);
  /external/pdfium/xfa/src/fee/src/fee/
fde_txtedtblock.cpp 305 int32_t CFDE_TxtEdtField::Replace(int32_t nIndex,
fde_txtedtblock.h 107 virtual int32_t Replace(int32_t nIndex,
213 virtual int32_t Replace(int32_t nIndex,
  /external/regex-re2/util/
pcre.cc 326 bool PCRE::Replace(string *str,
340 str->replace(vec[0], vec[1] - vec[0], s);
    [all...]

Completed in 622 milliseconds

1 2 3