HomeSort by relevance Sort by last modified time
    Searched refs:replace (Results 51 - 75 of 3666) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/apache-harmony/support/src/test/java/tests/support/
Support_PlatformFile.java 31 + System.getProperty("java.vm.version").replace('.', '-');
  /external/clang/include/clang/Edit/
EditsReceiver.h 26 virtual void replace(CharSourceRange range, StringRef text) = 0;
27 /// \brief By default it calls replace with an empty string.
  /external/deqp/scripts/build/
common.py 34 return '"%s"' % s.replace('\\', '\\\\').replace('"', '\"').replace('$', '\$').replace('`', '\`')
  /external/google-breakpad/src/testing/scripts/generator/
gmock_gen.py 30 gmock_class.__doc__ = gmock_class.__doc__.replace('gmock_class.py', __file__)
  /external/icu/android_icu4j/src/main/java/android/icu/text/
ReplaceableString.java 125 * Replace zero or more characters with new characters.
131 * @param text new text to replace characters <code>start</code> to
134 public void replace(int start, int limit, String text) { method in class:ReplaceableString
135 buf.replace(start, limit, text);
139 * Replace a substring of this object with the given text.
144 * @param chars the text to replace characters <code>start</code>
150 public void replace(int start, int limit, char[] chars, method in class:ReplaceableString
176 replace(dest, dest, text, 0, limit - start); method
  /external/icu/icu4c/source/i18n/unicode/
unirepl.h 28 * replace a range of characters in a Replaceable string with output
47 * Replace characters in 'text' from 'start' to 'limit' with the
64 virtual int32_t replace(Replaceable& text,
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ReplaceableString.java 133 * Replace zero or more characters with new characters.
139 * @param text new text to replace characters <code>start</code> to
143 public void replace(int start, int limit, String text) { method in class:ReplaceableString
144 buf.replace(start, limit, text);
148 * Replace a substring of this object with the given text.
153 * @param chars the text to replace characters <code>start</code>
160 public void replace(int start, int limit, char[] chars, method in class:ReplaceableString
187 replace(dest, dest, text, 0, limit - start); method
  /external/markdown/markdown/extensions/
fenced_code.py 23 >>> markdown.markdown(text, extensions=['fenced_code'], safe_mode='replace')
104 txt = txt.replace('&', '&amp;')
105 txt = txt.replace('<', '&lt;')
106 txt = txt.replace('>', '&gt;')
107 txt = txt.replace('"', '&quot;')
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
ConversionRule.java 35 * Given replacement rules, replace each capturing group in matcher's pattern
40 public String replace(Matcher matcher); method in interface:ConversionRule
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/util/
ReflectionUtils.java 36 javaName = javaName.replace('.', '/');
  /external/testng/src/test/java/test/
EclipseTest.java 17 String fileName = ctx.getSuite().getXmlSuite().getFileName().replace("\\", "/");
  /external/v8/test/mjsunit/regress/
regress-crbug-450960.js 7 "a".replace(/a/g, "");
16 "b".replace(/(b)/g, new []);
  /external/v8/test/mjsunit/
string-oom-replace-global-regexp-with-string.js 13 a.replace(/./g, b);
23 a.replace(/a/g, a);
  /external/webrtc/tools/perf/
perf_utils.py 36 str(data_point).replace(' ', ''), units)
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_buffer.py 22 name.replace(Name(u"memoryview", prefix=name.prefix))
fix_funcattrs.py 20 attr.replace(Name((u"__%s__" % attr.value[5:]),
fix_getcwdu.py 19 name.replace(Name(u"getcwd", prefix=name.prefix))
fix_nonzero.py 21 name.replace(new)
fix_raw_input.py 17 name.replace(Name(u"input", prefix=name.prefix))
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_buffer.py 22 name.replace(Name(u"memoryview", prefix=name.prefix))
fix_funcattrs.py 20 attr.replace(Name((u"__%s__" % attr.value[5:]),
fix_getcwdu.py 19 name.replace(Name(u"getcwd", prefix=name.prefix))
fix_nonzero.py 21 name.replace(new)
fix_raw_input.py 17 name.replace(Name(u"input", prefix=name.prefix))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_buffer.py 22 name.replace(Name(u"memoryview", prefix=name.prefix))

Completed in 484 milliseconds

1 23 4 5 6 7 8 91011>>