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

1 23 4 5 6 7 8 91011>>

  /development/tools/apkcheck/src/com/android/apkcheck/
TypeUtils.java 83 builder.append(type.replace('.', '/'));
99 return className.replace('.', '$');
237 typeName = typeName.replace('.', '$');
244 typeName.substring(nextDot+1).replace('.', '$');
  /external/chromium/net/base/
net_util_win.cc 44 std::replace(path.begin(), path.end(), '/', '\\');
  /external/chromium/third_party/icu/source/i18n/
strrepl.h 75 * @param theOutput text that will replace input text when the
76 * replace() method is called. May contain stand-in characters
79 * the replace() method
90 * @param theOutput text that will replace input text when the
91 * replace() method is called. May contain stand-in characters
123 virtual int32_t replace(Replaceable& text,
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/icu4c/i18n/
strrepl.h 75 * @param theOutput text that will replace input text when the
76 * replace() method is called. May contain stand-in characters
79 * the replace() method
90 * @param theOutput text that will replace input text when the
91 * replace() method is called. May contain stand-in characters
123 virtual int32_t replace(Replaceable& text,
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/proguard/src/proguard/io/
FileDataEntry.java 56 .replace(File.separatorChar, ClassConstants.INTERNAL_PACKAGE_SEPARATOR);
ZipDataEntry.java 56 .replace(File.separatorChar, ClassConstants.INTERNAL_PACKAGE_SEPARATOR);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-119909.js 29 * decision by deleting the provisions above and replace them with the notice
70 * and tests str.search(), str.match(), str.replace()
85 res = strOriginal.replace(re, strReplace);
regress-169534.js 29 * decision by deleting the provisions above and replace them with the notice
57 actual = str.replace(re, '<a href="$4">$2</a>');
  /external/webkit/LayoutTests/fast/js/resources/
json2-es5-compat.js 68 a replacer function to replace those with JSON values.
154 lastIndex, length, parse, prototype, push, replace, slice, stringify,
204 // Otherwise we must also replace the offending characters with safe escape
209 '"' + string.replace(escapable, function (a) {
356 // that can replace values, or an array of strings that will select the keys.
428 // Parsing happens in four stages. In the first stage, we replace certain
434 text = text.replace(cx, function (a) {
447 // replace the JSON backslash pairs with '@' (a non-JSON character). Second, we
448 // replace all simple value tokens with ']' characters. Third, we delete all
454 test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, '@')
    [all...]
  /external/webkit/SunSpider/hosted/
json2.js 76 a replacer function to replace those with JSON values.
154 lastIndex, length, parse, prototype, push, replace, slice, stringify,
213 // Otherwise we must also replace the offending characters with safe escape
218 '"' + string.replace(escapable, function (a) {
360 // that can replace values, or an array of strings that will select the keys.
432 // Parsing happens in four stages. In the first stage, we replace certain
438 text = text.replace(cx, function (a) {
451 // replace the JSON backslash pairs with '@' (a non-JSON character). Second, we
452 // replace all simple value tokens with ']' characters. Third, we delete all
458 test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, '@')
    [all...]
  /external/webkit/WebKitTools/QueueStatusServer/handlers/
recentstatus.py 42 return self._title_case(queue_name.replace("-", " "))
  /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);
  /packages/apps/Tag/src/com/android/apps/tag/
HelpUtils.java 37 str = str.replace("%locale%", locale.getLanguage());
  /build/tools/droiddoc/templates/assets/
jquery-history.js 40 hash = '#' + hash.replace(hashTrim, '');
55 return currentHash.replace(hashTrim, '');
  /development/host/windows/prebuilt/usb/
Android.mk 17 @echo "Killing adb server so we can replace AdbWinApi.dll"
  /external/wpa_supplicant/
pmksa_cache.h 41 void *ctx, int replace),
64 void *ctx, int replace),
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
pmksa_cache.h 51 void *ctx, int replace),
74 void *ctx, int replace),
  /frameworks/base/tools/preload/
Record.java 24 * names. In that case, manually replace the delimiter with something else.
92 line = line.replace(REPLACE_CLASSES[i], REPLACE_CLASSES[i+1]);
150 return typeName.replace("/", ".");
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
PublicClassLoader.java 51 String classFileName = name.replace( '.', '/' ) + ".class";
95 getName().replace(".", "/") + "/" + name);
  /external/webkit/WebKitTools/CodeCoverage/
run-generate-coverage-data 72 file = file.replace('\\', '').replace('\n', '')
108 filepath = split[1][:-5].replace('#',os.path.sep)
114 filepath = split[1][:-5].replace('#',os.path.sep)
120 filepath = split[1][:-5].replace('#',os.path.sep)
124 basename=os.path.basename(cov_file).replace('#',os.path.sep)[:-5]
  /libcore/luni/src/main/java/java/nio/charset/
CharsetDecoder.java 62 * alternatives are to ignore it or to replace the erroneous input with the
113 private String replace; field in class:CharsetDecoder
150 replace = "\ufffd";
375 // If the action is IGNORE or REPLACE, we should continue decoding.
376 if (action == CodingErrorAction.REPLACE) {
377 if (out.remaining() < replace.length()) {
380 out.put(replace);
660 return replace;
686 replace = newReplacement;
CharsetEncoder.java 59 * {@link CodingErrorAction#IGNORE ignore} the error or {@link CodingErrorAction#REPLACE replace}
102 private byte[] replace; field in class:CharsetEncoder
452 // If the action is IGNORE or REPLACE, we should continue
454 if (action == CodingErrorAction.REPLACE) {
455 if (out.remaining() < replace.length) {
458 out.put(replace);
699 return replace;
736 replace = replacement;
737 implReplaceWith(replace);
    [all...]
  /external/stlport/stlport/stl/
_rope.h 1710 static _RopeRep* replace(_RopeRep* __old, size_t __pos1, function in class:rope
1784 void replace(size_t __p, size_t __n, const _Self& __r) { function in class:rope
1789 void replace(size_t __p, size_t __n, function in class:rope
1795 void replace(size_t __p, size_t __n, _CharT __c) { function in class:rope
1800 void replace(size_t __p, size_t __n, const _CharT* __c_string) { function in class:rope
1805 void replace(size_t __p, size_t __n, function in class:rope
1811 void replace(size_t __p, size_t __n, function in class:rope
1817 void replace(size_t __p, size_t __n, function in class:rope
1824 void replace(size_t __p, _CharT __c) { function in class:rope
1830 void replace(size_t __p, const _Self& __r) { function in class:rope
1834 void replace(size_t __p, const _CharT* __i, size_t __i_len) { function in class:rope
1838 void replace(size_t __p, const _CharT* __c_string) { function in class:rope
1842 void replace(size_t __p, const _CharT* __i, const _CharT* __j) { function in class:rope
1846 void replace(size_t __p, const const_iterator& __i, function in class:rope
1851 void replace(size_t __p, const iterator& __i, function in class:rope
1891 void replace(const iterator& __p, const iterator& __q, function in class:rope
1894 void replace(const iterator& __p, const iterator& __q, _CharT __c) function in class:rope
1896 void replace(const iterator& __p, const iterator& __q, function in class:rope
1899 void replace(const iterator& __p, const iterator& __q, function in class:rope
1902 void replace(const iterator& __p, const iterator& __q, function in class:rope
1905 void replace(const iterator& __p, const iterator& __q, function in class:rope
1908 void replace(const iterator& __p, const iterator& __q, function in class:rope
1913 void replace(const iterator& __p, const _Self& __r) function in class:rope
1915 void replace(const iterator& __p, _CharT __c) function in class:rope
1917 void replace(const iterator& __p, const _CharT* __c_string) function in class:rope
1919 void replace(const iterator& __p, const _CharT* __i, size_t __n) function in class:rope
1921 void replace(const iterator& __p, const _CharT* __i, const _CharT* __j) function in class:rope
1923 void replace(const iterator& __p, const_iterator __i, function in class:rope
1926 void replace(const iterator& __p, iterator __i, iterator __j) function in class:rope
    [all...]

Completed in 1336 milliseconds

1 23 4 5 6 7 8 91011>>