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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/third_party/icu/source/i18n/
strrepl.cpp 30 * @param theOutput text that will replace input text when the
31 * replace() method is called. May contain stand-in characters
34 * the replace() method
51 * @param theOutput text that will replace input text when the
52 * replace() method is called. May contain stand-in characters
103 int32_t StringReplacer::replace(Replaceable& text, function in class:StringReplacer
178 int32_t len = r->replace(text, destLimit, destLimit, cursor);
  /external/icu4c/i18n/
strrepl.cpp 30 * @param theOutput text that will replace input text when the
31 * replace() method is called. May contain stand-in characters
34 * the replace() method
51 * @param theOutput text that will replace input text when the
52 * replace() method is called. May contain stand-in characters
103 int32_t StringReplacer::replace(Replaceable& text, function in class:StringReplacer
178 int32_t len = r->replace(text, destLimit, destLimit, cursor);
  /external/stlport/test/unit/
rm_cp_test.cpp 121 replace(numbers, numbers + 6, 2, 42);
137 replace(v1.begin(), v1.end(), 2, 42);
  /external/v8/test/mjsunit/
fun-name.js 29 return s.replace(/\s/g, '');
regexp-static.js 69 // String.prototype.match and String.prototype.replace (when given a
92 s.replace(re, 'whocares');
129 // String.prototype.replace must interleave matching and replacing when a
134 assertEquals('abcd', 'abcd'.replace(re, f));
testcfg.py 88 'value': value.replace('\\', '\\\\').replace('\'', '\\\'') }
  /external/v8/test/mjsunit/regress/
regress-349.js 32 assertEquals(str, str.replace(/aabab/g, "foo"));
regress-515.js 40 string.replace(/x/g, "")
  /external/webkit/WebCore/platform/qt/
ClipboardQt.cpp 284 text.replace(QChar(0xa0), QLatin1Char(' '));
298 text.replace(QChar(0xa0), QLatin1Char(' '));
  /external/webkit/WebCore/platform/text/mac/
TextCodecMac.cpp 273 resultString.replace(0xE5E5, ideographicSpace);
285 copy.replace('\\', m_backslashAsCurrencySymbol);
  /external/webkit/WebKit/chromium/src/
WebFrameImpl.h 111 const WebURL& baseURL, const WebURL& unreachableURL, bool replace);
114 bool replace);
  /external/webkit/WebKit/qt/Api/
qwebelement.h 125 void replace(const QString& markup);
126 void replace(const QWebElement& element);
  /libcore/dalvik/src/main/java/dalvik/system/
PathClassLoader.java 204 String fileName = name.replace('.', '/') + ".class";
210 mPaths[i] + "/" + name.replace('.', '/') + ".class";
  /ndk/tests/device/test-gnustl-full/unit/
rm_cp_test.cpp 121 replace(numbers, numbers + 6, 2, 42);
137 replace(v1.begin(), v1.end(), 2, 42);
  /ndk/tests/device/test-stlport/unit/
rm_cp_test.cpp 121 replace(numbers, numbers + 6, 2, 42);
137 replace(v1.begin(), v1.end(), 2, 42);
  /packages/apps/Mms/src/com/android/mms/ui/
RecipientsAdapter.java 102 name = name.replace(", ", " ")
103 .replace(",", " "); // Make sure we leave a space between parts of names.
  /sdk/sdklauncher/
Android.mk 8 # Eventually it should simply replace the batch file.
  /external/stlport/stlport/stl/
_string.h 811 public: // Replace. (Conceptually equivalent
813 _Self& replace(size_type __pos, size_type __n, const _Self& __s) { function in class:basic_string
824 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, function in class:basic_string
838 _Self& replace(size_type __pos, size_type __n1, function in class:basic_string
851 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { function in class:basic_string
853 return replace(__pos, __n1, __s, _Traits::length(__s));
856 _Self& replace(size_type __pos, size_type __n1, function in class:basic_string
864 return replace(begin() + __pos, begin() + __pos + __len, __n2, __c);
867 _Self& replace(iterator __first, iterator __last, const _Self& __s) { function in class:basic_string
872 _Self& replace(iterator __first, iterator __last function in class:basic_string
879 _Self& replace(iterator __first, iterator __last, function in class:basic_string
913 _Self& replace(iterator __first, iterator __last, function in class:basic_string
923 _Self& replace(iterator __first, iterator __last, function in class:basic_string
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_string.h 811 public: // Replace. (Conceptually equivalent
813 _Self& replace(size_type __pos, size_type __n, const _Self& __s) { function in class:basic_string
824 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, function in class:basic_string
838 _Self& replace(size_type __pos, size_type __n1, function in class:basic_string
851 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { function in class:basic_string
853 return replace(__pos, __n1, __s, _Traits::length(__s));
856 _Self& replace(size_type __pos, size_type __n1, function in class:basic_string
864 return replace(begin() + __pos, begin() + __pos + __len, __n2, __c);
867 _Self& replace(iterator __first, iterator __last, const _Self& __s) { function in class:basic_string
872 _Self& replace(iterator __first, iterator __last function in class:basic_string
879 _Self& replace(iterator __first, iterator __last, function in class:basic_string
913 _Self& replace(iterator __first, iterator __last, function in class:basic_string
923 _Self& replace(iterator __first, iterator __last, function in class:basic_string
    [all...]
  /external/chromium/net/http/
http_response_headers_unittest.cc 43 replace(headers->begin(), headers->end(), '\n', '\0');
59 replace(headers.begin(), headers.end(), ' ', '_');
60 replace(headers.begin(), headers.end(), '\n', '\\');
61 replace(expected_headers.begin(), expected_headers.end(), ' ', '_');
62 replace(expected_headers.begin(), expected_headers.end(), '\n', '\\');
    [all...]
  /dalvik/docs/
prettify.js 236 pattern += '|' + preceder.replace(/([^=<>:&])/g, '\\$1');
259 return str.replace(pr_amp, '&amp;')
260 .replace(pr_lt, '&lt;')
261 .replace(pr_gt, '&gt;')
262 .replace(pr_quot, '&quot;');
267 return str.replace(pr_amp, '&amp;')
268 .replace(pr_lt, '&lt;')
269 .replace(pr_gt, '&gt;');
303 return html.replace(pr_ltEnt, '<')
304 .replace(pr_gtEnt, '>'
    [all...]
  /external/webkit/WebCore/inspector/front-end/
ElementsTreeOutline.js 688 node.nodeValue = node.nodeValue.replace(/\u200B/g, "");
889 // TODO: Replace with InjectedScriptAccess.getBasicProperties(obj, [names]).
    [all...]
  /external/clearsilver/python/examples/base/
odb.py 909 def __insertRow(self,a_row_obj,cursor = None,replace=0):
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
base.py 496 wdiff = wdiff.replace('##WDIFF_DEL##', '<span class=del>')
497 wdiff = wdiff.replace('##WDIFF_ADD##', '<span class=add>')
498 wdiff = wdiff.replace('##WDIFF_END##', '</span>')
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
ConcurrentSkipListSubMapTest.java 283 * replace fails when the given key is not present
287 assertNull(map.replace(six, "Z"));
292 * replace succeeds if the key is already present
296 assertNotNull(map.replace(one, "Z"));
302 * replace value fails when the given key not mapped to expected value
307 assertFalse(map.replace(one, "Z", "Z"));
312 * replace value succeeds when the given key mapped to expected value
317 assertTrue(map.replace(one, "A", "Z"));
553 * replace(null, x) throws NPE
558 c.replace(null, "whatever")
    [all...]

Completed in 1899 milliseconds

1 2 3 4 5 6 7 8 91011>>