/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _slist.c | 73 _Node_base* __n1 = this->_M_head._M_data._M_next; variable 75 while (__n1 && __n2) { 76 __STATIC_CAST(_Node*, __n1)->_M_data = __STATIC_CAST(const _Node*, __n2)->_M_data; 77 __p1 = __n1; 78 __n1 = __n1->_M_next;
|
D | _string_sum.h | 170 …_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() 172 _BString& replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) in replace() argument 173 {return _M_get_storage().replace(__pos, __n1, __s, __n2);} in replace() 174 _BString& replace(size_type __pos, size_type __n1, const _CharT* __s) in replace() argument 175 {return _M_get_storage().replace(__pos, __n1, __s);} in replace() 176 _BString& replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) in replace() argument 177 {return _M_get_storage().replace(__pos, __n1, __n2, __c);} 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() [all …]
|
D | _string.h | 824 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, in replace() argument 830 const size_type __len1 = (min) (__n1, __size1 - __pos1); in replace() 838 _Self& replace(size_type __pos, size_type __n1, in replace() argument 844 const size_type __len = (min) (__n1, __size - __pos); in replace() 851 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { in replace() argument 853 return replace(__pos, __n1, __s, _Traits::length(__s)); in replace() 856 _Self& replace(size_type __pos, size_type __n1, in replace() argument 861 const size_type __len = (min) (__n1, __size - __pos); in replace() 1029 int compare(size_type __pos1, size_type __n1, const _Self& __s) const { in compare() argument 1033 this->_M_Start() + __pos1 + (min) (__n1, size() - __pos1), in compare() [all …]
|
D | _string_workaround.h | 477 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, in replace() argument 479 _Base::replace(__pos1, __n1, __s, __pos2, __n2); in replace() 483 _Self& replace(size_type __pos, size_type __n1, in replace() argument 486 _Base::replace(__pos, __n1, __s, __n2); in replace() 490 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { in replace() argument 492 _Base::replace(__pos, __n1, __s); in replace() 496 _Self& replace(size_type __pos, size_type __n1, in replace() argument 498 _Base::replace(__pos, __n1, __n2, __c); in replace()
|
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
D | _string.h | 522 _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() 530 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s, size_type __n2) { in replace() argument 534 _M_non_dbg_impl.replace(__pos, __n1, __s, __n2); in replace() 539 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { in replace() argument 543 _M_non_dbg_impl.replace(__pos, __n1, __s); in replace() 548 _Self& replace(size_type __pos, size_type __n1, size_type __n2, _CharT __c) { in replace() argument 550 _M_non_dbg_impl.replace(__pos, __n1, __n2, __c); 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() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | string | 1610 basic_string& replace(size_type __pos1, size_type __n1, const basic_string& __str); 1611 …basic_string& replace(size_type __pos1, size_type __n1, const basic_string& __str, size_type __pos… 1612 basic_string& replace(size_type __pos, size_type __n1, const value_type* __s, size_type __n2); 1613 basic_string& replace(size_type __pos, size_type __n1, const value_type* __s); 1614 basic_string& replace(size_type __pos, size_type __n1, size_type __n2, value_type __c); 1702 int compare(size_type __pos1, size_type __n1, const basic_string& __str) const; 1703 …int compare(size_type __pos1, size_type __n1, const basic_string& __str, size_type __pos2, size_ty… 1705 int compare(size_type __pos1, size_type __n1, const value_type* __s) const; 1706 int compare(size_type __pos1, size_type __n1, const value_type* __s, size_type __n2) const; 2927 basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos, size_type __n1, const value_typ… [all …]
|
D | chrono | 419 static const intmax_t __n1 = _R1::num / __gcd_n1_n2; 438 static const bool value = (__n1 <= max / __d2) && (__n2 <= max / __d1); 439 typedef ratio<__mul<__n1, __d2, !value>::value,
|