Searched defs:__n2 (Results 1 - 4 of 4) sorted by relevance

/external/stlport/stlport/stl/
H A D_string_workaround.h478 size_type __pos2, size_type __n2) {
479 _Base::replace(__pos1, __n1, __s, __pos2, __n2);
484 const _CharT* __s, size_type __n2) {
486 _Base::replace(__pos, __n1, __s, __n2);
497 size_type __n2, _CharT __c) {
498 _Base::replace(__pos, __n1, __n2, __c);
477 replace(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) argument
483 replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) argument
496 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) argument
H A D_string_sum.h170 _BString& replace(size_type __pos1, size_type __n1, const _BString& __s, size_type __pos2, size_type __n2) argument
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) argument
173 {return _M_get_storage().replace(__pos, __n1, __s, __n2);}
176 _BString& replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) argument
177 {return _M_get_storage().replace(__pos, __n1, __n2, __c);}
243 int compare(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) const
244 { return _M_get_storage().compare(__pos1, __n1, __s, __pos2, __n2); }
249 int compare(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) const
250 { return _M_get_storage().compare(__pos1, __n1, __s, __n2); }
[all...]
H A D_string.h825 size_type __pos2, size_type __n2) {
831 const size_type __len2 = (min) (__n2, __size2 - __pos2);
839 const _CharT* __s, size_type __n2) {
845 if (__n2 > max_size() - (__size - __len))
848 __s, __s + __n2, _M_inside(__s));
857 size_type __n2, _CharT __c) {
862 if (__n2 > max_size() - (__size - __len))
864 return replace(begin() + __pos, begin() + __pos + __len, __n2, __c);
1038 size_type __pos2, size_type __n2) const {
1044 __s._M_Start() + __pos2 + (min) (__n2, __
824 replace(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) argument
838 replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) argument
856 replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) argument
1074 const ptrdiff_t __n2 = __l2 - __f2; local
[all...]
/external/stlport/stlport/stl/debug/
H A D_string.h523 size_type __pos2, size_type __n2) {
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) { argument
534 _M_non_dbg_impl.replace(__pos, __n1, __s, __n2);
548 _Self& replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) { argument
550 _M_non_dbg_impl.replace(__pos, __n1, __n2, __c);
656 size_type __pos2, size_type __n2) const
657 { return _M_non_dbg_impl.compare(__pos1, __n1, __s._M_non_dbg_impl, __pos2, __n2); }
667 size_type __n2) const {
669 return _M_non_dbg_impl.compare(__pos1, __n1, __s, __n2);
522 replace(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) argument
[all...]

Completed in 120 milliseconds