Lines Matching refs:replace
1293 { return this->replace(_M_iend(), _M_iend(), __first, __last); } in _GLIBCXX_VISIBILITY()
1440 { return this->replace(_M_ibegin(), _M_iend(), __first, __last); } in _GLIBCXX_VISIBILITY()
1500 { this->replace(__p, __p, __n, __c); } in _GLIBCXX_VISIBILITY()
1517 { this->replace(__p, __p, __beg, __end); } in _GLIBCXX_VISIBILITY()
1689 return this->replace(__pos1, size_type(0), __sv.data() in _GLIBCXX_VISIBILITY()
1781 replace(size_type __pos, size_type __n, const basic_string& __str) in _GLIBCXX_VISIBILITY()
1782 { return this->replace(__pos, __n, __str._M_data(), __str.size()); } in _GLIBCXX_VISIBILITY()
1803 replace(size_type __pos1, size_type __n1, const basic_string& __str, in _GLIBCXX_VISIBILITY()
1805 { return this->replace(__pos1, __n1, __str._M_data() in _GLIBCXX_VISIBILITY()
1828 replace(size_type __pos, size_type __n1, const _CharT* __s, in _GLIBCXX_VISIBILITY()
1848 replace(size_type __pos, size_type __n1, const _CharT* __s) in _GLIBCXX_VISIBILITY()
1851 return this->replace(__pos, __n1, __s, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
1872 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) in _GLIBCXX_VISIBILITY()
1890 replace(iterator __i1, iterator __i2, const basic_string& __str) in _GLIBCXX_VISIBILITY()
1891 { return this->replace(__i1, __i2, __str._M_data(), __str.size()); } in _GLIBCXX_VISIBILITY()
1909 replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n) in _GLIBCXX_VISIBILITY()
1913 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, __s, __n); in _GLIBCXX_VISIBILITY()
1930 replace(iterator __i1, iterator __i2, const _CharT* __s) in _GLIBCXX_VISIBILITY()
1933 return this->replace(__i1, __i2, __s, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
1951 replace(iterator __i1, iterator __i2, size_type __n, _CharT __c) in _GLIBCXX_VISIBILITY()
1975 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
1988 replace(iterator __i1, iterator __i2, _CharT* __k1, _CharT* __k2) in _GLIBCXX_VISIBILITY()
1993 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
1998 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
2004 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
2009 replace(iterator __i1, iterator __i2, iterator __k1, iterator __k2) in _GLIBCXX_VISIBILITY()
2014 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
2019 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
2025 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
2044 basic_string& replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
2046 { return this->replace(__i1, __i2, __l.begin(), __l.end()); } in _GLIBCXX_VISIBILITY()
2059 replace(size_type __pos, size_type __n, const _Tp& __svt) in _GLIBCXX_VISIBILITY()
2062 return this->replace(__pos, __n, __sv.data(), __sv.size()); in _GLIBCXX_VISIBILITY()
2076 replace(size_type __pos1, size_type __n1, const _Tp& __svt, in _GLIBCXX_VISIBILITY()
2080 return this->replace(__pos1, __n1, in _GLIBCXX_VISIBILITY()
2097 replace(const_iterator __i1, const_iterator __i2, const _Tp& __svt) in _GLIBCXX_VISIBILITY()
2100 return this->replace(__i1 - begin(), __i2 - __i1, __sv); in _GLIBCXX_VISIBILITY()
3333 replace(size_type __pos, size_type __n1, const _CharT* __s, in _GLIBCXX_VISIBILITY()