HomeSort by relevance Sort by last modified time
    Searched refs:replace (Results 101 - 125 of 3922) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/v8/test/mjsunit/
debug-stepin-builtin-callback-opt.js 29 // Optimize the inner helper function for string replace.
30 for (var i = 0; i < 10000; i++) "x".replace(re, replaceCallback);
34 var result = "x".replace(re, replaceCallback); // Break 1.
  /external/testng/src/main/java/org/testng/remote/strprotocol/
MessageHelper.java 160 return message.replace('\n', LINE_SEP_DELIMITER_1).replace('\r', LINE_SEP_DELIMITER_2);
168 return replace(
169 replace(
170 replace(
171 replace(message, "\u0004", "\\u0004"),
182 return replace(
183 replace(
184 replace(
185 replace(message, "\\u0004", "\u0004")
230 private static final String replace(String original, CharSequence target, CharSequence replacement) { method in class:MessageHelper
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/
gUnit.g 135 testInput = $STRING.text.replace("\\n", "\n").replace("\\r", "\r").replace("\\t", "\t")
136 .replace("\\b", "\b").replace("\\f", "\f").replace("\\\"", "\"").replace("\\'", "\'").replace("\\\\", "\\");
162 $STRING.setText($STRING.text.replace("\\n", "\n").replace("\\r", "\r").replace("\\t", "\t"
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/
target-loader.js 9 var location = scripts[scripts.length - 1].src.replace(/[^\/]+$/, '');
  /external/clang/www/analyzer/scripts/
menu.js 11 this.className=this.className.replace(" over", "");
  /external/fonttools/Lib/fontTools/ttLib/tables/
asciiTable.py 15 writer.write_noindent(data.replace("\r", "\n"))
21 lines = strjoin(content).replace("\r", "\n").split("\n")
  /external/icu/android_icu4j/src/main/java/android/icu/text/
FunctionReplacer.java 48 public int replace(Replaceable text, method in class:FunctionReplacer
54 int len = replacer.replace(text, start, limit, cursor);
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
FunctionReplacer.java 47 public int replace(Replaceable text, method in class:FunctionReplacer
53 int len = replacer.replace(text, start, limit, cursor);
  /external/jacoco/jacoco-maven-plugin.test/it/it-customize-agent/
verify.bsh 28 agentOptions = agentOptions.replace("\\","\\\\");
  /external/javassist/src/main/javassist/
LoaderClassPath.java 65 String cname = classname.replace('.', '/') + ".class";
81 String cname = classname.replace('.', '/') + ".class";
  /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/v8/test/mjsunit/regress/
regress-crbug-493779.js 11 s.replace(/[\u1234]/g, "");
  /frameworks/base/core/java/android/text/
Editable.java 52 public Editable replace(int st, int en, CharSequence source, int start, int end); method in interface:Editable
55 * Convenience for replace(st, en, text, 0, text.length())
56 * @see #replace(int, int, CharSequence, int, int)
58 public Editable replace(int st, int en, CharSequence text); method in interface:Editable
61 * Convenience for replace(where, where, text, start, end)
62 * @see #replace(int, int, CharSequence, int, int)
67 * Convenience for replace(where, where, text, 0, text.length());
68 * @see #replace(int, int, CharSequence, int, int)
73 * Convenience for replace(st, en, "", 0, 0)
74 * @see #replace(int, int, CharSequence, int, int
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_itertools.py 37 # Replace the node wich contains ('.', 'function') with the
40 func.parent.replace(func)
43 func.replace(Name(func.value[1:], prefix=prefix))
  /prebuilts/gdb/darwin-x86/lib/python2.7/sqlite3/
dump.py 40 # qtable = table_name.replace("'", "''")
44 # sql.replace("''")))
49 table_name_ident = table_name.replace('"', '""')
54 ",".join("""'||quote("{0}")||'""".format(col.replace('"', '""')) for col in column_names))
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/
unwinder.py 53 def register_unwinder(locus, unwinder, replace=False):
63 replace: If True, replaces existing unwinder with the same name.
88 if replace:
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_itertools.py 37 # Replace the node wich contains ('.', 'function') with the
40 func.parent.replace(func)
43 func.replace(Name(func.value[1:], prefix=prefix))
  /prebuilts/gdb/linux-x86/lib/python2.7/sqlite3/
dump.py 40 # qtable = table_name.replace("'", "''")
44 # sql.replace("''")))
49 table_name_ident = table_name.replace('"', '""')
54 ",".join("""'||quote("{0}")||'""".format(col.replace('"', '""')) for col in column_names))
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/
unwinder.py 53 def register_unwinder(locus, unwinder, replace=False):
63 replace: If True, replaces existing unwinder with the same name.
88 if replace:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_itertools.py 37 # Replace the node wich contains ('.', 'function') with the
40 func.parent.replace(func)
43 func.replace(Name(func.value[1:], prefix=prefix))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/
dump.py 40 # qtable = table_name.replace("'", "''")
44 # sql.replace("''")))
49 table_name_ident = table_name.replace('"', '""')
54 ",".join("""'||quote("{0}")||'""".format(col.replace('"', '""')) for col in column_names))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_itertools.py 37 # Replace the node wich contains ('.', 'function') with the
40 func.parent.replace(func)
43 func.replace(Name(func.value[1:], prefix=prefix))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/
dump.py 40 # qtable = table_name.replace("'", "''")
44 # sql.replace("''")))
49 table_name_ident = table_name.replace('"', '""')
54 ",".join("""'||quote("{0}")||'""".format(col.replace('"', '""')) for col in column_names))
  /developers/build/prebuilts/gradle/Camera2Basic/Application/src/main/java/com/example/android/camera2basic/
CameraActivity.java 30 .replace(R.id.container, Camera2BasicFragment.newInstance())
  /developers/build/prebuilts/gradle/Camera2Raw/Application/src/main/java/com/example/android/camera2raw/
CameraActivity.java 33 .replace(R.id.container, Camera2RawFragment.newInstance())

Completed in 1316 milliseconds

1 2 3 45 6 7 8 91011>>