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

1 2 3 4 5 67 8 91011>>

  /external/v8/test/mjsunit/
regexp-indexof.js 67 assertEquals("xxxdefxxxdefxxx", "xxxabcxxxabcxxx".replace(/abc/g, "def"));
68 assertEquals("o-o-oofo-ofo", "ofooofoooofofooofo".replace(/foo/g, "-"));
69 assertEquals("deded", "deded".replace(/x/g, "-"));
70 assertEquals("-a-b-c-d-e-f-", "abcdef".replace(new RegExp("", "g"), "-"));
function-caller.js 53 "abel".replace(/b/g, function h() {
54 assertEquals(String.prototype.replace, h.caller);
regexp-cache-replace.js 31 assertEquals("FxxBar", "FooBar".replace(re1, "x"));
35 assertEquals("FxxBar", "FooBar".replace(re1, "x"));
regexp-compile.js 31 assertEquals("a.yb", "axyb".replace(re, "."));
34 assertEquals("ax.b", "axyb".replace(re, "."));
  /external/webkit/LayoutTests/fast/encoding/
css-charset-evil.html 22 text = text.replace(/"/g, "");
  /external/webkit/Tools/WebKitLauncher/
start.html 23 return (request.responseText || "trunk").replace(/\s/g, '')
  /external/zlib/contrib/
README.contrib 30 assembler to replace longest_match() and inflate_fast()
36 Tuned x86 gcc asm code to replace inflate_fast()
50 replace longest_match() and inflate_fast(), also masm x86
54 x86 asm code to replace longest_match() and inflate_fast(),
  /frameworks/base/core/java/android/text/method/
CharacterPickerDialog.java 93 private void replaceCharacterAndClose(CharSequence replace) {
96 mText.insert(selEnd, replace);
98 mText.replace(selEnd - 1, selEnd, replace);
  /frameworks/base/telephony/java/com/android/internal/telephony/
IIccPhoneBook.aidl 49 * Replace oldAdn with newAdn in ADN-like record in EF
57 * Set both oldTag and oldPhoneNubmer to "" means to replace an
61 * Set both newTag and newPhoneNubmer to "" means to replace the old
80 * Set both newTag and newPhoneNubmer to "" means to replace the old
  /frameworks/testing/uiautomator/samples/SkeletonTest/
README 18 * modify Android.mk, replace LOCAL_MODULE_NAME, change LOCAL_MODULE_TAGS if
  /ndk/sources/host-tools/sed-4.2.1/m4/
realloc.m4 10 # fails), and replace realloc if it is not.
  /prebuilts/tools/common/proguard/proguard4.7/examples/dictionaries/
keywords.txt 5 # automatically replace reserved keywords, and the effect can fairly simply be
  /sdk/assetstudio/
Android.mk 22 # TODO: Replace common with the batik stuff
  /external/markdown/markdown/
html4.py 87 text = text.replace("&", "&")
89 text = text.replace("<", "&lt;")
91 text = text.replace(">", "&gt;")
101 text = text.replace("&", "&amp;")
103 text = text.replace("<", "&lt;")
105 text = text.replace(">", "&gt;")
107 text = text.replace("\"", "&quot;")
109 text = text.replace("\n", "&#10;")
118 text = text.replace("&", "&amp;")
120 text = text.replace(">", "&gt;"
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
jquery-history.js 40 hash = '#' + hash.replace(hashTrim, '');
55 return currentHash.replace(hashTrim, '');
  /cts/tests/tests/webkitsecurity/assets/
crash-frameset-CSS-content-property.html 17 // click on the not-found image placeholder to cause a crash. Hence, we don't replace
25 // a means to print a PASS message. Therefore, we replace <frameset> with <body>.
  /external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/
T.g 3 * extra text into a stream of tokens and how to replace a token
24 { $input->replace($m, "public void"); }
  /external/doclava/res/assets/templates/assets/
jquery-history.js 40 hash = '#' + hash.replace(hashTrim, '');
55 return currentHash.replace(hashTrim, '');
  /external/icu4c/i18n/
funcrepl.cpp 75 int32_t FunctionReplacer::replace(Replaceable& text, function in class:FunctionReplacer
82 int32_t len = replacer->toReplacer()->replace(text, start, limit, cursor);
  /external/markdown/docs/extensions/
Tables_of_Contents.txt 15 appear. Then, a nested list of all the headers in the document will replace the
42 * **marker**: Text to find and replace with the Table of Contents. Defaults
  /external/markdown/markdown/extensions/
codehilite.py 105 txt = txt.replace('&', '&amp;')
106 txt = txt.replace('<', '&lt;')
107 txt = txt.replace('>', '&gt;')
108 txt = txt.replace('"', '&quot;')
114 txt = txt.replace('\t', ' '*TAB_LENGTH)
115 txt = txt.replace(" "*4, "&nbsp; &nbsp; ")
116 txt = txt.replace(" "*3, "&nbsp; &nbsp;")
117 txt = txt.replace(" "*2, "&nbsp; ")
  /external/qemu/android/build/
mkdeps.sh 23 # the script is used to replace 'source.o' to a full path, as in
43 # we replace $OBJ_NAME with $OBJECT only if $OBJ_NAME starts the line
  /external/v8/test/mjsunit/regress/
regress-225.js 30 assertEquals("foo", "foo".replace(/(?:)/g, function() { return ""; }));
32 assertEquals("foo", "foo".replace(/(?:)/g, ""));
  /external/webkit/Source/WebCore/platform/chromium/
ClipboardUtilitiesChromium.cpp 44 str.replace(Newline, WindowsNewline);
52 str.replace(NonBreakingSpaceCharacter, SpaceCharacter);
  /external/webkit/Source/cmake/
FindICU.cmake 36 STRING(REGEX REPLACE ".*#define U_ICU_VERSION_MAJOR_NUM ([0-9]+).*" "\\1" ICU_MAJOR_VERSION "${_ICU_VERSION_CONENTS}")
37 STRING(REGEX REPLACE ".*#define U_ICU_VERSION_MINOR_NUM ([0-9]+).*" "\\1" ICU_MINOR_VERSION "${_ICU_VERSION_CONENTS}")

Completed in 1625 milliseconds

1 2 3 4 5 67 8 91011>>