HomeSort by relevance Sort by last modified time
    Searched full:replace (Results 26 - 50 of 5102) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/cmake/
OptionsWindows.cmake 14 STRING(REPLACE "/ENTRY:mainACRTStartup" "/ENTRY:WinMainCRTStartup" CMAKE_EXE_LINKER_FLAGS ${CMAKE_EXE_LINKER_FLAGS})
  /external/markdown/markdown/
postprocessors.py 55 text = text.replace("<p>%s</p>" %
58 text = text.replace(markdown.preprocessors.HTML_PLACEHOLDER % i,
64 html = html.replace('&', '&amp;')
65 html = html.replace('<', '&lt;')
66 html = html.replace('>', '&gt;')
67 return html.replace('"', '&quot;')
76 text = text.replace(markdown.AMP_SUBSTITUTE, "&")
  /external/v8/test/mjsunit/
string-replace-with-empty.js 31 assertEquals("0123", "aa0bb1cc2dd3".replace(/[a-z]/g, ""));
32 assertEquals("0123", "\u1234a0bb1cc2dd3".replace(/[\u1234a-z]/g, ""));
40 assertEquals(expected, cons.replace(/[a-z]/g, ""));
45 assertEquals(expected, cons.replace(/[\u1234a-z]/g, ""));
52 assertEquals(expected, cons.replace(/[a-z]/g, ""));
58 assertEquals(expected, cons.replace(/[\u1234a-z]/g, ""));
64 "foo".replace(/foo/g, "");
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
CodingErrorActionTest.java 47 assertNotNull(CodingErrorAction.REPLACE);
49 assertNotSame(CodingErrorAction.IGNORE, CodingErrorAction.REPLACE);
51 assertNotSame(CodingErrorAction.REPLACE, CodingErrorAction.REPORT);
59 assertTrue(CodingErrorAction.REPLACE.toString().indexOf("REPLACE") != -1);
  /external/openfst/src/include/fst/script/
replace.h 27 #include <fst/replace.h>
36 void Replace(ReplaceArgs *args) {
38 // pair<real label, real fst> that the real Replace will use
52 Replace(fst_tuples, ofst, args->arg3, args->arg4);
55 void Replace(const vector<pair<int64, const FstClass *> > &tuples,
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/String/
regress-189898.js 29 * decision by deleting the provisions above and replace them with the notice
55 actual = 'XaXY'.replace('XY', '--')
60 actual = '$a$^'.replace('$^', '--')
65 actual = 'ababc'.replace('abc', '--')
70 actual = 'ababc'.replace('abc', '^$')
78 * to String.prototype.replace() instead of a string.
84 actual = 'XaXY'.replace(/XY/, '--')
89 actual = 'XaXY'.replace(/XY/g, '--')
94 actual = '$a$^'.replace(/\$\^/, '--')
99 actual = '$a$^'.replace(/\$\^/g, '--'
    [all...]
  /external/webkit/Source/WebCore/editing/
DeleteSelectionCommand.h 37 static PassRefPtr<DeleteSelectionCommand> create(Document* document, bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool replace = false, bool expandForSpecialElements = false)
39 return adoptRef(new DeleteSelectionCommand(document, smartDelete, mergeBlocksAfterDelete, replace, expandForSpecialElements));
41 static PassRefPtr<DeleteSelectionCommand> create(const VisibleSelection& selection, bool smartDelete = false, bool mergeBlocksAfterDelete = true, bool replace = false, bool expandForSpecialElements = false)
43 return adoptRef(new DeleteSelectionCommand(selection, smartDelete, mergeBlocksAfterDelete, replace, expandForSpecialElements));
47 DeleteSelectionCommand(Document*, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements);
48 DeleteSelectionCommand(const VisibleSelection&, bool smartDelete, bool mergeBlocksAfterDelete, bool replace, bool expandForSpecialElements);
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestTokenRewriteStream.java 100 tokens.replace(0, "x");
116 tokens.replace(2, "x");
132 tokens.replace(1, "x");
153 tokens.replace(4, 8, "0"); // replace 3 * 0 with 0
193 tokens.replace(4, 8, "0"); // replace 3 * 0 with 0
235 tokens.replace(1, "x");
236 tokens.replace(1, "y");
253 tokens.replace(1, "x")
    [all...]
  /cts/tests/tests/webkitsecurity/assets/
null-document-location-replace-crash.html 2 location.replace. If the test passes, you'll see a PASS message below.</p>
15 frames[0].location.replace("javascript:'<script>parent.pass()</script>'");
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
ConcurrentMap.java 32 V replace(K key, V value); method in interface:ConcurrentMap
34 boolean replace(K key, V oldValue, V newValue); method in interface:ConcurrentMap
  /external/llvm/test/Transforms/DeadArgElim/
canon.ll 3 ; This test should remove {} and replace it with void
5 ; This test shouls replace the {i32} return value with just i32
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/archives/
ArchiveReplacement.java 25 * going to replace, if any.
33 * Creates a new replacement where the {@code newArchive} will replace the
35 * When {@code newArchive} is not intended to replace anything (e.g. because
37 * {@code replace} shall be null.
41 * @param replaced An optional local archive that the new one will replace.
42 * Can be null if this archive does not replace anything.
58 * Returns an optional local archive that the new one will replace.
59 * Can be null if this archive does not replace anything.
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/
README 8 To "index.php", replace APP_ID, TOKEN, and TOKEN_SECRET with your app's id, your
  /external/clang/test/CXX/basic/basic.link/
p9.cpp 9 int N(); // expected-error{{redefinition}} expected-warning{{interpreted as a function declaration}} expected-note {{replace parentheses with an initializer}}
  /external/clang/www/analyzer/scripts/
menu.js 11 this.className=this.className.replace(" over", "");
  /external/dbus/test/data/invalid-messages/
not-nul-header-padding.message 20 ## kill a padding byte and replace it
  /external/guava/guava/src/com/google/common/collect/
ForwardingConcurrentMap.java 52 public V replace(K key, V value) { method in class:ForwardingConcurrentMap
53 return delegate().replace(key, value);
57 public boolean replace(K key, V oldValue, V newValue) { method in class:ForwardingConcurrentMap
58 return delegate().replace(key, oldValue, newValue);
  /external/icu4c/samples/datefmt/
util.h 12 // Replace nonprintable characters with unicode escapes
  /external/icu4c/samples/msgfmt/
util.h 12 // Replace nonprintable characters with unicode escapes
  /external/icu4c/samples/numfmt/
util.h 13 // Replace nonprintable characters with unicode escapes
  /external/icu4c/samples/translit/
util.h 12 // Replace nonprintable characters with unicode escapes
  /external/v8/test/mjsunit/regress/
regress-1360.js 28 // Check the receiver for the sort and replace functions to
29 // Array.prototype.sort and String.prototype.replace.
38 "axc".replace("x", strict);
39 "axc".replace("x", non_strict);
  /external/clang/test/Index/
fix-its.c 11 // CHECK: FIX-IT: Replace [13:12 - 13:18] with "wibble"
15 // CHECK: FIX-IT: Replace [17:6 - 17:12] with "wibble"
25 // CHECK: FIX-IT: Replace [26:17 - 26:19] with "%ld"
  /external/doclava/src/com/google/doclava/
CodeTagInfo.java 21 t = t.replace("&", "&amp;");
22 t = t.replace("<", "&lt;");
23 t = t.replace(">", "&gt;");
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/
template.js 24 * Reference: ** replace with bugzilla URL or document reference **
25 * Description: ** replace with description of test **
26 * Author: ** replace with your e-mail address **

Completed in 567 milliseconds

12 3 4 5 6 7 8 91011>>