Lines Matching refs:replace

1294         { return this->replace(end(), end(), __first, __last); }  in _GLIBCXX_VISIBILITY()
1484 { return this->replace(begin(), end(), __first, __last); } in _GLIBCXX_VISIBILITY()
1551 this->replace(__p, __p, __n, __c); in _GLIBCXX_VISIBILITY()
1570 { this->replace(__p, __p, __n, __c); } in _GLIBCXX_VISIBILITY()
1595 this->replace(__p, __p, __beg, __end); in _GLIBCXX_VISIBILITY()
1614 { this->replace(__p, __p, __beg, __end); } in _GLIBCXX_VISIBILITY()
1653 { return this->replace(__pos1, size_type(0), in _GLIBCXX_VISIBILITY()
1677 { return this->replace(__pos1, size_type(0), __str._M_data() in _GLIBCXX_VISIBILITY()
1699 { return this->replace(__pos, size_type(0), __s, __n); } in _GLIBCXX_VISIBILITY()
1720 return this->replace(__pos, size_type(0), __s, in _GLIBCXX_VISIBILITY()
1796 return this->replace(__pos1, size_type(0), in _GLIBCXX_VISIBILITY()
1901 replace(size_type __pos, size_type __n, const basic_string& __str) in _GLIBCXX_VISIBILITY()
1902 { return this->replace(__pos, __n, __str._M_data(), __str.size()); } in _GLIBCXX_VISIBILITY()
1923 replace(size_type __pos1, size_type __n1, const basic_string& __str, in _GLIBCXX_VISIBILITY()
1925 { return this->replace(__pos1, __n1, __str._M_data() in _GLIBCXX_VISIBILITY()
1948 replace(size_type __pos, size_type __n1, const _CharT* __s, in _GLIBCXX_VISIBILITY()
1973 replace(size_type __pos, size_type __n1, const _CharT* __s) in _GLIBCXX_VISIBILITY()
1976 return this->replace(__pos, __n1, __s, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
1997 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) in _GLIBCXX_VISIBILITY()
2015 replace(__const_iterator __i1, __const_iterator __i2, in _GLIBCXX_VISIBILITY()
2017 { return this->replace(__i1, __i2, __str._M_data(), __str.size()); } in _GLIBCXX_VISIBILITY()
2035 replace(__const_iterator __i1, __const_iterator __i2, in _GLIBCXX_VISIBILITY()
2040 return this->replace(__i1 - begin(), __i2 - __i1, __s, __n); in _GLIBCXX_VISIBILITY()
2057 replace(__const_iterator __i1, __const_iterator __i2, const _CharT* __s) in _GLIBCXX_VISIBILITY()
2060 return this->replace(__i1, __i2, __s, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
2078 replace(__const_iterator __i1, __const_iterator __i2, size_type __n, in _GLIBCXX_VISIBILITY()
2105 replace(const_iterator __i1, const_iterator __i2, in _GLIBCXX_VISIBILITY()
2121 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
2135 replace(__const_iterator __i1, __const_iterator __i2, in _GLIBCXX_VISIBILITY()
2141 return this->replace(__i1 - begin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
2146 replace(__const_iterator __i1, __const_iterator __i2, in _GLIBCXX_VISIBILITY()
2152 return this->replace(__i1 - begin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
2157 replace(__const_iterator __i1, __const_iterator __i2, in _GLIBCXX_VISIBILITY()
2163 return this->replace(__i1 - begin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
2168 replace(__const_iterator __i1, __const_iterator __i2, in _GLIBCXX_VISIBILITY()
2174 return this->replace(__i1 - begin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
2193 basic_string& replace(const_iterator __i1, const_iterator __i2, in _GLIBCXX_VISIBILITY()
2195 { return this->replace(__i1, __i2, __l.begin(), __l.size()); } in _GLIBCXX_VISIBILITY()
2208 replace(size_type __pos, size_type __n, const _Tp& __svt) in _GLIBCXX_VISIBILITY()
2211 return this->replace(__pos, __n, __sv.data(), __sv.size()); in _GLIBCXX_VISIBILITY()
2225 replace(size_type __pos1, size_type __n1, const _Tp& __svt, in _GLIBCXX_VISIBILITY()
2229 return this->replace(__pos1, __n1, in _GLIBCXX_VISIBILITY()
2246 replace(const_iterator __i1, const_iterator __i2, const _Tp& __svt) in _GLIBCXX_VISIBILITY()
2249 return this->replace(__i1 - begin(), __i2 - __i1, __sv); in _GLIBCXX_VISIBILITY()
4304 { return this->replace(_M_iend(), _M_iend(), __first, __last); } in _GLIBCXX_VISIBILITY()
4451 { return this->replace(_M_ibegin(), _M_iend(), __first, __last); } in _GLIBCXX_VISIBILITY()
4511 { this->replace(__p, __p, __n, __c); } in _GLIBCXX_VISIBILITY()
4528 { this->replace(__p, __p, __beg, __end); } in _GLIBCXX_VISIBILITY()
4700 return this->replace(__pos1, size_type(0), __sv.data() in _GLIBCXX_VISIBILITY()
4792 replace(size_type __pos, size_type __n, const basic_string& __str) in _GLIBCXX_VISIBILITY()
4793 { return this->replace(__pos, __n, __str._M_data(), __str.size()); } in _GLIBCXX_VISIBILITY()
4814 replace(size_type __pos1, size_type __n1, const basic_string& __str, in _GLIBCXX_VISIBILITY()
4816 { return this->replace(__pos1, __n1, __str._M_data() in _GLIBCXX_VISIBILITY()
4839 replace(size_type __pos, size_type __n1, const _CharT* __s, in _GLIBCXX_VISIBILITY()
4859 replace(size_type __pos, size_type __n1, const _CharT* __s) in _GLIBCXX_VISIBILITY()
4862 return this->replace(__pos, __n1, __s, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
4883 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) in _GLIBCXX_VISIBILITY()
4901 replace(iterator __i1, iterator __i2, const basic_string& __str) in _GLIBCXX_VISIBILITY()
4902 { return this->replace(__i1, __i2, __str._M_data(), __str.size()); } in _GLIBCXX_VISIBILITY()
4920 replace(iterator __i1, iterator __i2, const _CharT* __s, size_type __n) in _GLIBCXX_VISIBILITY()
4924 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, __s, __n); in _GLIBCXX_VISIBILITY()
4941 replace(iterator __i1, iterator __i2, const _CharT* __s) in _GLIBCXX_VISIBILITY()
4944 return this->replace(__i1, __i2, __s, traits_type::length(__s)); in _GLIBCXX_VISIBILITY()
4962 replace(iterator __i1, iterator __i2, size_type __n, _CharT __c) in _GLIBCXX_VISIBILITY()
4986 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
4999 replace(iterator __i1, iterator __i2, _CharT* __k1, _CharT* __k2) in _GLIBCXX_VISIBILITY()
5004 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
5009 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
5015 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
5020 replace(iterator __i1, iterator __i2, iterator __k1, iterator __k2) in _GLIBCXX_VISIBILITY()
5025 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
5030 replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
5036 return this->replace(__i1 - _M_ibegin(), __i2 - __i1, in _GLIBCXX_VISIBILITY()
5055 basic_string& replace(iterator __i1, iterator __i2, in _GLIBCXX_VISIBILITY()
5057 { return this->replace(__i1, __i2, __l.begin(), __l.end()); } in _GLIBCXX_VISIBILITY()
5070 replace(size_type __pos, size_type __n, const _Tp& __svt) in _GLIBCXX_VISIBILITY()
5073 return this->replace(__pos, __n, __sv.data(), __sv.size()); in _GLIBCXX_VISIBILITY()
5087 replace(size_type __pos1, size_type __n1, const _Tp& __svt, in _GLIBCXX_VISIBILITY()
5091 return this->replace(__pos1, __n1, in _GLIBCXX_VISIBILITY()
5108 replace(const_iterator __i1, const_iterator __i2, const _Tp& __svt) in _GLIBCXX_VISIBILITY()
5111 return this->replace(__i1 - begin(), __i2 - __i1, __sv); in _GLIBCXX_VISIBILITY()