| /ndk/sources/cxx-stl/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...] |
| _string_workaround.h | 470 public: // Replace. (Conceptually equivalent 472 _Self& replace(size_type __pos, size_type __n, const _Self& __s) { function in class:basic_string 473 _Base::replace(__pos, __n, __s); 477 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, function in class:basic_string 479 _Base::replace(__pos1, __n1, __s, __pos2, __n2); 483 _Self& replace(size_type __pos, size_type __n1, function in class:basic_string 486 _Base::replace(__pos, __n1, __s, __n2); 490 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { function in class:basic_string 492 _Base::replace(__pos, __n1, __s); 496 _Self& replace(size_type __pos, size_type __n1 function in class:basic_string 502 _Self& replace(iterator __first, iterator __last, const _Self& __s) { function in class:basic_string 508 _Self& replace(iterator __first, iterator __last, function in class:basic_string 516 _Self& replace(iterator __first, iterator __last, function in class:basic_string 524 _Self& replace(iterator __first, iterator __last, function in class:basic_string 534 _Self& replace(iterator __first, iterator __last, function in class:basic_string 542 _Self& replace(iterator __first, iterator __last, function in class:basic_string [all...] |
| /external/qemu/ |
| dcache.c | 40 int *replace; member in struct:Dcache 106 dcache.replace = NULL; 108 dcache.replace = malloc(sizeof(int) << log_rows); 109 memset(dcache.replace, 0, sizeof(int) << log_rows); 142 free(dcache.replace); 233 // Pick a way to replace 237 way = dcache.replace[row]; 241 dcache.replace[row] = next_way;
|
| /packages/apps/Settings/src/com/android/settings/ |
| TetherSettings.java | 116 String path = HELP_PATH.replace("%y", locale.getLanguage().toLowerCase()); 117 path = path.replace("%z", "_"+locale.getCountry().toLowerCase()); 131 String url = HELP_URL.replace("%y", locale.getLanguage().toLowerCase()); 132 url = url.replace("%z", (useCountry ? "_"+locale.getCountry().toLowerCase() : "")); 134 url = url.replace("%x", USB_HELP_MODIFIER); 136 url = url.replace("%x", WIFI_HELP_MODIFIER); 140 url = url.replace("%x", "");
|
| /external/stlport/stlport/stl/ |
| _string_workaround.h | 470 public: // Replace. (Conceptually equivalent 472 _Self& replace(size_type __pos, size_type __n, const _Self& __s) { function in class:basic_string 473 _Base::replace(__pos, __n, __s); 477 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, function in class:basic_string 479 _Base::replace(__pos1, __n1, __s, __pos2, __n2); 483 _Self& replace(size_type __pos, size_type __n1, function in class:basic_string 486 _Base::replace(__pos, __n1, __s, __n2); 490 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { function in class:basic_string 492 _Base::replace(__pos, __n1, __s); 496 _Self& replace(size_type __pos, size_type __n1 function in class:basic_string 502 _Self& replace(iterator __first, iterator __last, const _Self& __s) { function in class:basic_string 508 _Self& replace(iterator __first, iterator __last, function in class:basic_string 516 _Self& replace(iterator __first, iterator __last, function in class:basic_string 524 _Self& replace(iterator __first, iterator __last, function in class:basic_string 534 _Self& replace(iterator __first, iterator __last, function in class:basic_string 542 _Self& replace(iterator __first, iterator __last, function in class:basic_string [all...] |
| /cts/tests/tests/text/src/android/text/cts/ |
| SpannableStringBuilderTest.java | 200 method = "replace", 207 builder.replace(0, 5, text); 211 builder.replace(7, 12, "google"); 215 builder.replace(4, 2, text); 221 builder.replace(-4, 100, text); 227 builder.replace(0, 1, null); 235 method = "replace", 242 builder.replace(0, 5, text, 3, text.length()); 246 builder.replace(3, 5, text, 3, text.length()); 250 builder.replace(0, 5, text, 0, text.length()) [all...] |
| /libcore/luni/src/test/java/tests/api/java/util/concurrent/ |
| ConcurrentHashMapTest.java | 260 * replace fails when the given key is not present 264 assertNull(map.replace(six, "Z")); 269 * replace succeeds if the key is already present 273 assertNotNull(map.replace(one, "Z")); 279 * replace value fails when the given key not mapped to expected value 284 assertFalse(map.replace(one, "Z", "Z")); 289 * replace value succeeds when the given key mapped to expected value 294 assertTrue(map.replace(one, "A", "Z")); 453 * replace(null, x) throws NPE 458 c.replace(null, "whatever") [all...] |
| /external/stlport/stlport/stl/debug/ |
| _string.h | 514 // Replace. (Conceptually equivalent to erase followed by insert.) 515 _Self& replace(size_type __pos, size_type __n, const _Self& __s) { function in class:basic_string 517 _M_non_dbg_impl.replace(__pos, __n, __s._M_non_dbg_impl); 522 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, function in class:basic_string 525 _M_non_dbg_impl.replace(__pos1, __n1, __s._M_non_dbg_impl, __pos2, __n2); 530 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) { function in class:basic_string 534 _M_non_dbg_impl.replace(__pos, __n1, __s, __n2); 539 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { function in class:basic_string 543 _M_non_dbg_impl.replace(__pos, __n1, __s); 548 _Self& replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) function in class:basic_string 555 _Self& replace(iterator __f, iterator __l, const _Self& __s) { function in class:basic_string 563 _Self& replace(iterator __f, iterator __l, const _CharT* __s, size_type __n) { function in class:basic_string 573 _Self& replace(iterator __f, iterator __l, const _CharT* __s) { function in class:basic_string 583 _Self& replace(iterator __f, iterator __l, size_type __n, _CharT __c) { function in class:basic_string 593 _Self& replace(iterator __first, iterator __last, function in class:basic_string 607 _Self& replace(iterator __first, iterator __last, function in class:basic_string 620 _Self& replace(iterator __first, iterator __last, function in class:basic_string 630 _Self& replace(iterator __first, iterator __last, function in class:basic_string [all...] |
| /ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
| _string.h | 514 // Replace. (Conceptually equivalent to erase followed by insert.) 515 _Self& replace(size_type __pos, size_type __n, const _Self& __s) { function in class:basic_string 517 _M_non_dbg_impl.replace(__pos, __n, __s._M_non_dbg_impl); 522 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, function in class:basic_string 525 _M_non_dbg_impl.replace(__pos1, __n1, __s._M_non_dbg_impl, __pos2, __n2); 530 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) { function in class:basic_string 534 _M_non_dbg_impl.replace(__pos, __n1, __s, __n2); 539 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { function in class:basic_string 543 _M_non_dbg_impl.replace(__pos, __n1, __s); 548 _Self& replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) function in class:basic_string 555 _Self& replace(iterator __f, iterator __l, const _Self& __s) { function in class:basic_string 563 _Self& replace(iterator __f, iterator __l, const _CharT* __s, size_type __n) { function in class:basic_string 573 _Self& replace(iterator __f, iterator __l, const _CharT* __s) { function in class:basic_string 583 _Self& replace(iterator __f, iterator __l, size_type __n, _CharT __c) { function in class:basic_string 593 _Self& replace(iterator __first, iterator __last, function in class:basic_string 607 _Self& replace(iterator __first, iterator __last, function in class:basic_string 620 _Self& replace(iterator __first, iterator __last, function in class:basic_string 630 _Self& replace(iterator __first, iterator __last, function in class:basic_string [all...] |
| /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/ |
| vstring.h | 759 { return this->replace(_M_iend(), _M_iend(), __first, __last); } 866 { return this->replace(_M_ibegin(), _M_iend(), __first, __last); } 894 { this->replace(__p, __p, __n, __c); } 911 { this->replace(__p, __p, __beg, __end); } 939 { return this->replace(__pos1, size_type(0), 1135 replace(size_type __pos, size_type __n, const __versa_string& __str) function in class:__versa_string 1158 replace(size_type __pos1, size_type __n1, const __versa_string& __str, function in class:__versa_string 1186 replace(size_type __pos, size_type __n1, const _CharT* __s, function in class:__versa_string 1211 replace(size_type __pos, size_type __n1, const _CharT* __s) function in class:__versa_string 1235 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) function in class:__versa_string 1253 replace(iterator __i1, iterator __i2, const __versa_string& __str) function in class:__versa_string 1271 replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n) function in class:__versa_string 1292 replace(iterator __i1, iterator __i2, const _CharT* __s) function in class:__versa_string 1313 replace(iterator __i1, iterator __i2, size_type __n, _CharT __c) function in class:__versa_string 1336 replace(iterator __i1, iterator __i2, function in class:__versa_string 1349 replace(iterator __i1, iterator __i2, _CharT* __k1, _CharT* __k2) function in class:__versa_string 1359 replace(iterator __i1, iterator __i2, function in class:__versa_string 1370 replace(iterator __i1, iterator __i2, iterator __k1, iterator __k2) function in class:__versa_string 1380 replace(iterator __i1, iterator __i2, function in class:__versa_string 1404 __versa_string& replace(iterator __i1, iterator __i2, function in class:__versa_string [all...] |
| /external/chromium/sdch/open-vcdiff/src/ |
| vcdecoder_test.cc | 106 delta_file_.replace(delta_file_header_.size() + offset, 117 delta_file_.replace(delta_file_header_.size() + offset, 128 delta_file_.replace(delta_file_header_.size() + offset,
|
| /frameworks/base/core/java/android/widget/ |
| MultiAutoCompleteTextView.java | 162 e.replace(start, i, ""); 164 e.replace(start, i, 207 editable.replace(start, end, mTokenizer.terminateToken(text));
|
| /libcore/luni/src/main/java/java/io/ |
| ObjectStreamField.java | 136 this.typeString = signature.replace('.', '/').intern(); 292 String typeName = t.getName().replace('.', '/'); 363 String className = typeString.replace('/', '.');
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
| PasteAction.java | 82 sse_doc.replace(region.getStartOffset(), 0, data); 95 sse_doc.replace(start_tag.getEndOffset(), 0, data); 110 sse_doc.replace(region.getEndOffset(), 0, data);
|
| /external/v8/test/mjsunit/ |
| this-in-callbacks.js | 41 // test String.replace 46 assertEquals('id', 'hello'.replace('hello', r)); 47 assertEquals('id', 'hello'.replace(/hello/, r));
|
| 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"), "-"));
|
| /libcore/luni/src/test/java/libcore/java/lang/ |
| OldStringTest.java | 172 assertEquals("Returned incorrect string.", hw1, hw1.replace("!", ".")); 268 assertEquals("Failed replace", "aaccdd", "aabbdd".replace( 270 assertEquals("Failed replace by bigger seq", "cccbccc", "aba".replace( 272 assertEquals("Failed replace by smaller seq", "$bba^", 273 "$aaaaa^".replace(new StringBuilder("aa"), "b")); 276 "".replace((CharSequence) null, "123".subSequence(0, 1)); 283 "".replace("123".subSequence(0, 1), (CharSequence) null);
|
| /external/gtest/test/ |
| gtest_output_test.py | 86 return s.replace('\r\n', '\n').replace('\r', '\n')
|
| /external/icu4c/tools/ |
| icu-svnprops-check.py | 110 file_type = file_type.replace(".", "\.") 111 file_type = file_type.replace("*", ".*")
|
| /external/protobuf/python/ |
| setup.py | 31 output = source.replace(".proto", "_pb2.py").replace("../src/", "")
|
| /external/webkit/WebCore/page/ |
| Location.idl | 47 [Custom, V8OnInstance] void replace(in DOMString url);
|
| /external/webkit/WebCore/platform/text/ |
| PlatformString.h | 131 String& replace(UChar a, UChar b) { if (m_impl) m_impl = m_impl->replace(a, b); return *this; } function in class:WebCore::String 132 String& replace(UChar a, const String& b) { if (m_impl) m_impl = m_impl->replace(a, b.impl()); return *this; } function in class:WebCore::String 133 String& replace(const String& a, const String& b) { if (m_impl) m_impl = m_impl->replace(a.impl(), b.impl()); return *this; } function in class:WebCore::String 134 String& replace(unsigned index, unsigned len, const String& b) { if (m_impl) m_impl = m_impl->replace(index, len, b.impl()); return *this; } function in class:WebCore::String
|
| RegularExpression.cpp | 137 // replace last match if this one is later and not a subset of the last match 153 void replace(String& string, const RegularExpression& target, const String& replacement) function in namespace:WebCore 161 string.replace(index, matchLength, replacement);
|
| /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/ |
| chromium_win.py | 67 return abspath.replace('\\', '/') 74 return path.replace('\\', '/')
|
| /frameworks/base/core/java/android/text/method/ |
| NumberKeyListener.java | 117 content.replace(selStart, selEnd, String.valueOf((char) i)); 127 content.replace(selStart - 1, selEnd, String.valueOf('+'));
|