Searched refs:__pos2 (Results 1 - 5 of 5) sorted by relevance
/external/stlport/stlport/stl/ |
H A D | _string.h | 825 size_type __pos2, size_type __n2) { 828 if (__pos1 > __size1 || __pos2 > __size2) 831 const size_type __len2 = (min) (__n2, __size2 - __pos2); 835 __s._M_Start() + __pos2, __s._M_Start() + __pos2 + __len2, &__s == this); 1038 size_type __pos2, size_type __n2) const { 1039 if (__pos1 > size() || __pos2 > __s.size()) 1043 __s._M_Start() + __pos2, 1044 __s._M_Start() + __pos2 + (min) (__n2, __s.size() - __pos2)); 824 replace(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) argument 1037 compare(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) const argument [all...] |
H A D | _string_sum.h | 170 _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);} 243 int compare(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) const argument 244 { return _M_get_storage().compare(__pos1, __n1, __s, __pos2, __n2); }
|
H A D | _string_workaround.h | 478 size_type __pos2, size_type __n2) { 479 _Base::replace(__pos1, __n1, __s, __pos2, __n2); 477 replace(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) argument
|
H A D | _rope.h | 1711 size_t __pos2, _RopeRep* __r) { 1714 _Self_destruct_ptr __right(_S_substring(__old, __pos2, __old->_M_size._M_data)); 1710 replace(_RopeRep* __old, size_t __pos1, size_t __pos2, _RopeRep* __r) argument
|
/external/stlport/stlport/stl/debug/ |
H A D | _string.h | 523 size_type __pos2, size_type __n2) { 525 _M_non_dbg_impl.replace(__pos1, __n1, __s._M_non_dbg_impl, __pos2, __n2); 656 size_type __pos2, size_type __n2) const 657 { return _M_non_dbg_impl.compare(__pos1, __n1, __s._M_non_dbg_impl, __pos2, __n2); } 522 replace(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) argument 655 compare(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) const argument
|
Completed in 505 milliseconds