Home
last modified time | relevance | path

Searched refs:__pos1 (Results 1 – 6 of 6) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_string.h824 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, in replace() argument
828 if (__pos1 > __size1 || __pos2 > __size2) in replace()
830 const size_type __len1 = (min) (__n1, __size1 - __pos1); in replace()
834 return _M_replace(begin() + __pos1, begin() + __pos1 + __len1, in replace()
1029 int compare(size_type __pos1, size_type __n1, const _Self& __s) const { in compare() argument
1030 if (__pos1 > size()) in compare()
1032 return _M_compare(this->_M_Start() + __pos1, in compare()
1033 this->_M_Start() + __pos1 + (min) (__n1, size() - __pos1), in compare()
1037 int compare(size_type __pos1, size_type __n1, const _Self& __s, in compare() argument
1039 if (__pos1 > size() || __pos2 > __s.size()) in compare()
[all …]
D_string_sum.h170 …_BString& replace(size_type __pos1, size_type __n1, const _BString& __s, size_type __pos2, size_ty… in replace() argument
171 {return _M_get_storage().replace(__pos1, __n1, __s, __pos2, __n2);} in replace()
241 int compare(size_type __pos1, size_type __n1, const _Self& __s) const in compare() argument
242 { return _M_get_storage().compare(__pos1, __n1, __s); } in compare()
243 …int compare(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) … in compare() argument
244 { return _M_get_storage().compare(__pos1, __n1, __s, __pos2, __n2); } in compare()
247 int compare(size_type __pos1, size_type __n1, const _CharT* __s) const in compare() argument
248 { return _M_get_storage().compare(__pos1, __n1, __s); } in compare()
249 int compare(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) const in compare() argument
250 { return _M_get_storage().compare(__pos1, __n1, __s, __n2); } in compare()
D_string_workaround.h477 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, in replace() argument
479 _Base::replace(__pos1, __n1, __s, __pos2, __n2); in replace()
D_rope.h1712 static _RopeRep* replace(_RopeRep* __old, size_t __pos1,
1715 _Self_destruct_ptr __left(_S_substring(__old, 0, __pos1));
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
D_string.h522 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, in replace() argument
525 _M_non_dbg_impl.replace(__pos1, __n1, __s._M_non_dbg_impl, __pos2, __n2); in replace()
655 int compare(size_type __pos1, size_type __n1, const _Self& __s, in compare() argument
657 { return _M_non_dbg_impl.compare(__pos1, __n1, __s._M_non_dbg_impl, __pos2, __n2); } in compare()
666 int compare(size_type __pos1, size_type __n1, const _CharT* __s, in compare() argument
669 return _M_non_dbg_impl.compare(__pos1, __n1, __s, __n2); in compare()
/ndk/sources/cxx-stl/llvm-libc++/include/
Dstring1330 basic_string& insert(size_type __pos1, const basic_string& __str);
1331 …basic_string& insert(size_type __pos1, const basic_string& __str, size_type __pos2, size_type __n);
1366 basic_string& replace(size_type __pos1, size_type __n1, const basic_string& __str);
1367 …basic_string& replace(size_type __pos1, size_type __n1, const basic_string& __str, size_type __pos…
1458 int compare(size_type __pos1, size_type __n1, const basic_string& __str) const;
1459 …int compare(size_type __pos1, size_type __n1, const basic_string& __str, size_type __pos2, size_ty…
1461 int compare(size_type __pos1, size_type __n1, const_pointer __s) const;
1462 int compare(size_type __pos1, size_type __n1, const_pointer __s, size_type __n2) const;
2522 basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos1, const basic_string& __str)
2524 return insert(__pos1, __str.data(), __str.size());
[all …]