Searched refs:__pos1 (Results 1 - 5 of 5) sorted by relevance

/external/stlport/stlport/stl/
H A D_string.h824 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, argument
828 if (__pos1 > __size1 || __pos2 > __size2)
830 const size_type __len1 = (min) (__n1, __size1 - __pos1);
834 return _M_replace(begin() + __pos1, begin() + __pos1 + __len1,
1029 int compare(size_type __pos1, size_type __n1, const _Self& __s) const { argument
1030 if (__pos1 > size())
1032 return _M_compare(this->_M_Start() + __pos1,
1033 this->_M_Start() + __pos1 + (min) (__n1, size() - __pos1),
1037 compare(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) const argument
1052 compare(size_type __pos1, size_type __n1, const _CharT* __s) const argument
1061 compare(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) const argument
[all...]
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);}
241 int compare(size_type __pos1, size_type __n1, const _Self& __s) const argument
242 { return _M_get_storage().compare(__pos1, __n1, __s); }
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); }
247 int compare(size_type __pos1, size_type __n1, const _CharT* __s) const argument
248 { return _M_get_storage().compare(__pos1, __n1, __s); }
249 int compare(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) const argument
250 { return _M_get_storage().compare(__pos1, __n
[all...]
H A D_string_workaround.h477 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, argument
479 _Base::replace(__pos1, __n1, __s, __pos2, __n2);
H A D_rope.h1710 static _RopeRep* replace(_RopeRep* __old, size_t __pos1, argument
1713 _Self_destruct_ptr __left(_S_substring(__old, 0, __pos1));
/external/stlport/stlport/stl/debug/
H A D_string.h522 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, argument
525 _M_non_dbg_impl.replace(__pos1, __n1, __s._M_non_dbg_impl, __pos2, __n2);
655 int compare(size_type __pos1, size_type __n1, const _Self& __s, argument
657 { return _M_non_dbg_impl.compare(__pos1, __n1, __s._M_non_dbg_impl, __pos2, __n2); }
666 int compare(size_type __pos1, size_type __n1, const _CharT* __s, argument
669 return _M_non_dbg_impl.compare(__pos1, __n1, __s, __n2);

Completed in 315 milliseconds