Searched defs:replace (Results 1 - 13 of 13) sorted by relevance

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
H A Dsequence.hpp62 // replace helper implementation ----------------------------------//
64 // Optimized version of replace for generic sequence containers
128 // No native replace method
148 // Container has native replace method
160 Input.replace( From, To, Begin, End );
164 // replace helper -------------------------------------------------//
167 inline void replace( function in namespace:boost::algorithm::detail
179 inline void replace( function in namespace:boost::algorithm::detail
187 ::boost::algorithm::detail::replace( Input, From, To, ::boost::begin(Insert), ::boost::end(Insert) );
/ndk/sources/cxx-stl/stlport/stlport/stl/
H A D_algobase.h698 // replace
701 replace(_ForwardIter __first, _ForwardIter __last, function
H A D_string.c372 basic_string<_CharT,_Traits,_Alloc> ::replace(iterator __first, iterator __last, function in class:_Alloc
H A D_string_workaround.h472 _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
498 _Base::replace(__po
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...]
H A D_string_sum.h167 //replace
168 _BString& replace(size_type __pos, size_type __n, const _BString& __s) function in class:__bstr_sum
169 {return _M_get_storage().replace(__pos, __n, __s);}
170 _BString& replace(size_type __pos1, size_type __n1, const _BString& __s, size_type __pos2, size_type __n2) function in class:__bstr_sum
171 {return _M_get_storage().replace(__pos1, __n1, __s, __pos2, __n2);}
172 _BString& replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) function in class:__bstr_sum
173 {return _M_get_storage().replace(__pos, __n1, __s, __n2);}
174 _BString& replace(size_type __pos, size_type __n1, const _CharT* __s) function in class:__bstr_sum
175 {return _M_get_storage().replace(__pos, __n1, __s);}
176 _BString& replace(size_typ function in class:__bstr_sum
[all...]
H A D_string.h813 _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(iterato 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...]
H A D_rope.h1712 static _RopeRep* replace(_RopeRep* __old, size_t __pos1, function in class:rope
1735 _M_reset(replace(_M_tree_ptr._M_data, __p, __p, __r._M_tree_ptr._M_data));
1785 // (position, length) versions of replace operations:
1786 void replace(size_t __p, size_t __n, const _Self& __r) { function in class:rope
1788 _M_reset(replace(_M_tree_ptr._M_data, __p, __p + __n, __r._M_tree_ptr._M_data));
1791 void replace(size_t __p, size_t __n, function in class:rope
1794 replace(__p, __n, __r);
1797 void replace(size_t __p, size_t __n, _CharT __c) { function in class:rope
1799 replace(__p, __n, __r);
1802 void replace(size_ function in class:rope
1807 void replace(size_t __p, size_t __n, function in class:rope
1813 void replace(size_t __p, size_t __n, function in class:rope
1819 void replace(size_t __p, size_t __n, function in class:rope
1826 void replace(size_t __p, _CharT __c) { function in class:rope
1832 void replace(size_t __p, const _Self& __r) { function in class:rope
1836 void replace(size_t __p, const _CharT* __i, size_t __i_len) { function in class:rope
1840 void replace(size_t __p, const _CharT* __c_string) { function in class:rope
1844 void replace(size_t __p, const _CharT* __i, const _CharT* __j) { function in class:rope
1848 void replace(size_t __p, const const_iterator& __i, function in class:rope
1853 void replace(size_t __p, const iterator& __i, function in class:rope
1893 void replace(const iterator& __p, const iterator& __q, function in class:rope
1896 void replace(const iterator& __p, const iterator& __q, _CharT __c) function in class:rope
1898 void replace(const iterator& __p, const iterator& __q, function in class:rope
1901 void replace(const iterator& __p, const iterator& __q, function in class:rope
1904 void replace(const iterator& __p, const iterator& __q, function in class:rope
1907 void replace(const iterator& __p, const iterator& __q, function in class:rope
1910 void replace(const iterator& __p, const iterator& __q, function in class:rope
1915 void replace(const iterator& __p, const _Self& __r) function in class:rope
1917 void replace(const iterator& __p, _CharT __c) function in class:rope
1919 void replace(const iterator& __p, const _CharT* __c_string) function in class:rope
1921 void replace(const iterator& __p, const _CharT* __i, size_t __n) function in class:rope
1923 void replace(const iterator& __p, const _CharT* __i, const _CharT* __j) function in class:rope
1925 void replace(const iterator& __p, const_iterator __i, function in class:rope
1928 void replace(const iterator& __p, iterator __i, iterator __j) function in class:rope
[all...]
/ndk/sources/host-tools/make-3.81/
H A Dexpand.c330 char *pattern, *replace, *ppercent, *rpercent;
343 replace = (char *) alloca (replace_end
345 *(replace++) = '%';
346 bcopy (replace_beg, replace,
348 replace[replace_end - replace_beg] = '\0';
361 rpercent = replace;
363 --replace;
366 o = patsubst_expand (o, value, pattern, replace,
328 char *pattern, *replace, *ppercent, *rpercent; local
H A Dvariable.c587 directly to the global_setlist so we need to replace that with the new one.
596 /* It was the global, so instead of new -> &global we want to replace
759 struct variable *replace = lookup_variable ("MAKESHELL", 9);
762 if (replace && *replace->value && replace->origin == o_env)
763 replace->origin = o_env_override;
767 if (!replace || !*replace->value)
782 if (!replace || !*replac
750 struct variable *replace = lookup_variable ("MAKESHELL", 9); local
[all...]
H A Dfunction.c78 subst_expand (char *o, char *text, char *subst, char *replace,
89 o = variable_buffer_output (o, replace, rlen);
110 /* Output everything before this occurrence of the string to replace. */
124 o = variable_buffer_output (o, replace, rlen);
149 patsubst_expand (char *o, char *text, char *pattern, char *replace,
162 replace_percent = find_percent (replace);
171 replace_prepercent_len = replace_percent - replace - 1;
176 replace_prepercent_len = strlen (replace);
188 return subst_expand (o, text, pattern, replace,
189 strlen (pattern), strlen (replace),
77 subst_expand(char *o, char *text, char *subst, char *replace, unsigned int slen, unsigned int rlen, int by_word) argument
147 patsubst_expand(char *o, char *text, char *pattern, char *replace, char *pattern_percent, char *replace_percent) argument
[all...]
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
H A D_string.h515 _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
550 _M_non_dbg_impl.replace(__po
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/tests/device/test-gnustl-full/unit/
H A Dstring_test.cpp59 CPPUNIT_TEST(replace);
118 void replace();
530 void StringTest::replace() function in class:StringTest
533 * This test case is for the non template basic_string::replace method,
542 s.replace(i, i + 3, v.begin(), v.end());
547 s.replace(i, i + 1, v.begin(), v.end());
553 s.replace(i, i + 3, ci + 3, cs.end());
559 s.replace(i, i + 3, ci, ci + 2);
565 s.replace(i, i + 3, ci + 1, cs.end());
571 s.replace(
[all...]
/ndk/tests/device/test-stlport/unit/
H A Dstring_test.cpp59 CPPUNIT_TEST(replace);
118 void replace();
530 void StringTest::replace() function in class:StringTest
533 * This test case is for the non template basic_string::replace method,
542 s.replace(i, i + 3, v.begin(), v.end());
547 s.replace(i, i + 1, v.begin(), v.end());
553 s.replace(i, i + 3, ci + 3, cs.end());
559 s.replace(i, i + 3, ci, ci + 2);
565 s.replace(i, i + 3, ci + 1, cs.end());
571 s.replace(
[all...]

Completed in 276 milliseconds