HomeSort by relevance Sort by last modified time
    Searched refs:replace (Results 351 - 375 of 2935) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/6/sources/cxx-stl/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...]
  /prebuilts/ndk/7/sources/cxx-stl/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...]
  /prebuilts/ndk/8/sources/cxx-stl/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...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/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...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
TokenRewriteStream.java 35 * You can insert stuff, replace, and delete chunks. Note that the
247 public void replace(int index, Object text) { method in class:TokenRewriteStream
248 replace(DEFAULT_PROGRAM_NAME, index, index, text); method
251 public void replace(int from, int to, Object text) { method in class:TokenRewriteStream
252 replace(DEFAULT_PROGRAM_NAME, from, to, text); method
255 public void replace(Token indexT, Object text) { method in class:TokenRewriteStream
256 replace(DEFAULT_PROGRAM_NAME, indexT, indexT, text); method
259 public void replace(Token from, Token to, Object text) { method in class:TokenRewriteStream
260 replace(DEFAULT_PROGRAM_NAME, from, to, text); method
263 public void replace(String programName, int from, int to, Object text) method in class:TokenRewriteStream
273 public void replace(String programName, Token from, Token to, Object text) { method in class:TokenRewriteStream
274 replace(programName, method
297 replace(programName,from,to,null); method
301 replace(programName,from,to,null); method
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
JUnitCodeGen.java 80 ruleWithReturn.put(method.getName(), method.getReturnType().getName().replace('$', '.'));
144 packagePath = "./"+grammarInfo.getGrammarPackage().replace('.', '/');
328 inputString = inputString.replace("\\", "\\\\");
330 inputString = inputString.replace("\"", "\\\"");
331 // note: replace newline to String ".\n", replace tab to String ".\t"
332 inputString = inputString.replace("\n", "\\n").replace("\t", "\\t").replace("\r", "\\r").replace("\b", "\\b").replace("\f", "\\f")
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
VideoProvider.java 167 ret = mPrefixUrl + category.replace(" ", "%20") + '/' +
168 videoUrl.replace(" ", "%20");
175 ret = mPrefixUrl + category.replace(" ", "%20") + '/' +
176 title.replace(" ", "%20") + '/' +
177 imageUrl.replace(" ", "%20");
  /external/bison/build-aux/
gnupload 31 replace=
57 --replace allow replacements of existing files
152 --replace)
153 replace="replace: true"
409 if test -n "$replace"; then stmt="$stmt
410 $replace"
  /external/chromium_org/build/android/pylib/gtest/
test_runner.py 112 full_test_name = p.match.group(1).replace('\r', '')
114 log = p.before.replace('\r', '')
116 if full_test_name == p.match.group(1).replace('\r', ''):
138 log=p.before.replace('\r', '')))
145 log=p.before.replace('\r', '')))
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
files.py 30 filename = filename.replace(self.relative_dir, "")
171 regex_pat = fnmatch.translate(pattern).replace(r'\Z(', '(')
176 regex_pat = regex_pat.replace(r"\/", r"[\\/]")
189 match is used to replace the root of the path with the result root.
200 new = path.replace(m.group(0), result)
202 new = new.replace(pattern_sep, result_sep)
  /external/chromium_org/third_party/mesa/src/src/glsl/builtins/tools/
generate_builtins.py 64 t = s.replace('\\', '\\\\').replace('"', '\\"').replace('\n', '\\n"\n "')
91 output = output.replace('\n\n', '\n')
134 profiles.append((pfile, path.basename(pfile).replace('.', '_')))
  /external/chromium_org/tools/telemetry/build/
update_docs.py 36 new_href = href.replace('file:', '')
37 new_href = new_href.replace(telemetry_dir, os.pardir)
38 new_href = new_href.replace(os.sep, '/')
40 new_link_text = link_text.replace(telemetry_dir + os.sep, '')
43 html = html.replace(link, new_link)
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicLongMap.java 105 if (map.replace(key, atomic, new AtomicLong(delta))) {
154 if (map.replace(key, atomic, new AtomicLong(delta))) {
189 if (map.replace(key, atomic, new AtomicLong(newValue))) {
326 * first decrementing to zero, and then removing. putIfAbsent or replace could observe the
331 * - Define putIfAbsent and replace as treating zero and absent identically (as currently
335 * - Allow putIfAbsent and replace to distinguish between zero and absent, but don't implement
338 * replace(key, long).
364 if (map.replace(key, atomic, new AtomicLong(newValue))) {
383 boolean replace(K key, long expectedOldValue, long newValue) {
  /external/mesa3d/src/glsl/builtins/tools/
generate_builtins.py 64 t = s.replace('\\', '\\\\').replace('"', '\\"').replace('\n', '\\n"\n "')
91 output = output.replace('\n\n', '\n')
134 profiles.append((pfile, path.basename(pfile).replace('.', '_')))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_zipimport_support.py 96 test_src = test_src.replace(
99 test_src = test_src.replace("test.test_doctest",
101 test_src = test_src.replace("test.sample_doctest",
108 src = src.replace("test.test_doctest", "test_zipped_doctest")
112 mod_name = mod_name.replace("sample_", "sample_zipped_")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_zipimport_support.py 96 test_src = test_src.replace(
99 test_src = test_src.replace("test.test_doctest",
101 test_src = test_src.replace("test.sample_doctest",
108 src = src.replace("test.test_doctest", "test_zipped_doctest")
112 mod_name = mod_name.replace("sample_", "sample_zipped_")
  /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...]
  /prebuilts/ndk/5/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...]
  /prebuilts/ndk/6/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...]
  /prebuilts/ndk/7/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...]
  /prebuilts/ndk/8/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...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/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...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
vstring.h 777 { return this->replace(_M_iend(), _M_iend(), __first, __last); }
906 { return this->replace(_M_ibegin(), _M_iend(), __first, __last); }
934 { this->replace(__p, __p, __n, __c); }
956 { this->replace(__p, __p, __beg, __end); }
1191 replace(size_type __pos, size_type __n, const __versa_string& __str) function in class:__versa_string
1214 replace(size_type __pos1, size_type __n1, const __versa_string& __str, function in class:__versa_string
1242 replace(size_type __pos, size_type __n1, const _CharT* __s, function in class:__versa_string
1266 replace(size_type __pos, size_type __n1, const _CharT* __s) function in class:__versa_string
1290 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) function in class:__versa_string
1308 replace(iterator __i1, iterator __i2, const __versa_string& __str) function in class:__versa_string
1326 replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n) function in class:__versa_string
1347 replace(iterator __i1, iterator __i2, const _CharT* __s) function in class:__versa_string
1368 replace(iterator __i1, iterator __i2, size_type __n, _CharT __c) function in class:__versa_string
1393 replace(iterator __i1, iterator __i2, function in class:__versa_string
1405 replace(iterator __i1, iterator __i2, function in class:__versa_string
1419 replace(iterator __i1, iterator __i2, _CharT* __k1, _CharT* __k2) function in class:__versa_string
1429 replace(iterator __i1, iterator __i2, function in class:__versa_string
1440 replace(iterator __i1, iterator __i2, iterator __k1, iterator __k2) function in class:__versa_string
1450 replace(iterator __i1, iterator __i2, function in class:__versa_string
1474 __versa_string& replace(iterator __i1, iterator __i2, function in class:__versa_string
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
vstring.h 777 { return this->replace(_M_iend(), _M_iend(), __first, __last); }
906 { return this->replace(_M_ibegin(), _M_iend(), __first, __last); }
934 { this->replace(__p, __p, __n, __c); }
956 { this->replace(__p, __p, __beg, __end); }
1191 replace(size_type __pos, size_type __n, const __versa_string& __str) function in class:__versa_string
1214 replace(size_type __pos1, size_type __n1, const __versa_string& __str, function in class:__versa_string
1242 replace(size_type __pos, size_type __n1, const _CharT* __s, function in class:__versa_string
1266 replace(size_type __pos, size_type __n1, const _CharT* __s) function in class:__versa_string
1290 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) function in class:__versa_string
1308 replace(iterator __i1, iterator __i2, const __versa_string& __str) function in class:__versa_string
1326 replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n) function in class:__versa_string
1347 replace(iterator __i1, iterator __i2, const _CharT* __s) function in class:__versa_string
1368 replace(iterator __i1, iterator __i2, size_type __n, _CharT __c) function in class:__versa_string
1393 replace(iterator __i1, iterator __i2, function in class:__versa_string
1405 replace(iterator __i1, iterator __i2, function in class:__versa_string
1419 replace(iterator __i1, iterator __i2, _CharT* __k1, _CharT* __k2) function in class:__versa_string
1429 replace(iterator __i1, iterator __i2, function in class:__versa_string
1440 replace(iterator __i1, iterator __i2, iterator __k1, iterator __k2) function in class:__versa_string
1450 replace(iterator __i1, iterator __i2, function in class:__versa_string
1474 __versa_string& replace(iterator __i1, iterator __i2, function in class:__versa_string
    [all...]

Completed in 562 milliseconds

<<11121314151617181920>>