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

/external/stlport/stlport/stl/
H A D_slist.c73 _Node_base* __n1 = this->_M_head._M_data._M_next;
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;
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);}
174 _BString& replace(size_type __pos, size_type __n1, const _CharT* __s) argument
175 {return _M_get_storage().replace(__pos, __n1, __s);}
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);}
241 int compare(size_type __pos1, size_type __n1, const _Self& __s) const argument
242 { return _M_get_storage().compare(__pos1, __n1, __
243 compare(size_type __pos1, size_type __n1, const _Self& __s, size_type __pos2, size_type __n2) const argument
247 compare(size_type __pos1, size_type __n1, const _CharT* __s) const argument
249 compare(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) const argument
[all...]
H A D_string.h824 _Self& replace(size_type __pos1, size_type __n1, const _Self& __s, argument
830 const size_type __len1 = (min) (__n1, __size1 - __pos1);
838 _Self& replace(size_type __pos, size_type __n1, argument
844 const size_type __len = (min) (__n1, __size - __pos);
851 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { argument
853 return replace(__pos, __n1, __s, _Traits::length(__s));
856 _Self& replace(size_type __pos, size_type __n1, argument
861 const size_type __len = (min) (__n1, __size - __pos);
1029 int compare(size_type __pos1, size_type __n1, const _Self& __s) const { argument
1033 this->_M_Start() + __pos1 + (min) (__n1, siz
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
1073 const ptrdiff_t __n1 = __l1 - __f1; local
[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);
483 _Self& replace(size_type __pos, size_type __n1, argument
486 _Base::replace(__pos, __n1, __s, __n2);
490 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { argument
492 _Base::replace(__pos, __n1, __s);
496 _Self& replace(size_type __pos, size_type __n1, argument
498 _Base::replace(__pos, __n1, __n2, __c);
/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);
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);
539 _Self& replace(size_type __pos, size_type __n1, const _CharT* __s) { argument
543 _M_non_dbg_impl.replace(__pos, __n1, __s);
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);
655 int compare(size_type __pos1, size_type __n1, const _Self& __s, argument
657 { return _M_non_dbg_impl.compare(__pos1, __n1, __
666 compare(size_type __pos1, size_type __n1, const _CharT* __s, size_type __n2) const argument
[all...]

Completed in 305 milliseconds