Home
last modified time | relevance | path

Searched refs:__n2 (Results 1 – 7 of 7) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_slist.c74 const _Node_base* __n2 = __x._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;
79 __n2 = __n2->_M_next;
81 if (__n2 == 0)
84 _M_insert_after_range(__p1, const_iterator(__CONST_CAST(_Node_base*, __n2)),
D_string_sum.h170 …g& replace(size_type __pos1, size_type __n1, const _BString& __s, size_type __pos2, size_type __n2) 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()
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()
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()
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.h825 size_type __pos2, size_type __n2) { in replace() argument
831 const size_type __len2 = (min) (__n2, __size2 - __pos2); in replace()
839 const _CharT* __s, size_type __n2) { in replace() argument
845 if (__n2 > max_size() - (__size - __len)) in replace()
848 __s, __s + __n2, _M_inside(__s)); in replace()
857 size_type __n2, _CharT __c) { in replace() argument
862 if (__n2 > max_size() - (__size - __len)) in replace()
864 return replace(begin() + __pos, begin() + __pos + __len, __n2, __c); in replace()
1038 size_type __pos2, size_type __n2) const { in compare() argument
1044 __s._M_Start() + __pos2 + (min) (__n2, __s.size() - __pos2)); in compare()
[all …]
D_string_workaround.h478 size_type __pos2, size_type __n2) { in replace() argument
479 _Base::replace(__pos1, __n1, __s, __pos2, __n2); in replace()
484 const _CharT* __s, size_type __n2) { in replace() argument
486 _Base::replace(__pos, __n1, __s, __n2); in replace()
497 size_type __n2, _CharT __c) { in replace() argument
498 _Base::replace(__pos, __n1, __n2, __c); in replace()
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/
D_string.h523 size_type __pos2, size_type __n2) { 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()
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()
656 size_type __pos2, size_type __n2) const in compare() argument
657 { return _M_non_dbg_impl.compare(__pos1, __n1, __s._M_non_dbg_impl, __pos2, __n2); } in compare()
667 size_type __n2) const { in compare() argument
669 return _M_non_dbg_impl.compare(__pos1, __n1, __s, __n2); in compare()
/ndk/sources/cxx-stl/llvm-libc++/include/
Dstring1367 …ace(size_type __pos1, size_type __n1, const basic_string& __str, size_type __pos2, size_type __n2);
1368 basic_string& replace(size_type __pos, size_type __n1, const_pointer __s, size_type __n2);
1370 basic_string& replace(size_type __pos, size_type __n1, size_type __n2, value_type __c);
1459 …ze_type __pos1, size_type __n1, const basic_string& __str, size_type __pos2, size_type __n2) const;
1462 int compare(size_type __pos1, size_type __n1, const_pointer __s, size_type __n2) const;
2588 …, _Traits, _Allocator>::replace(size_type __pos, size_type __n1, const_pointer __s, size_type __n2)
2598 if (__cap - __sz + __n1 >= __n2)
2601 if (__n1 != __n2)
2606 if (__n1 > __n2)
2608 traits_type::move(__p + __pos, __s, __n2);
[all …]
Dlist2118 size_type __n2 = __n / 2;
2119 iterator __e1 = _VSTD::next(__f1, __n2);
2120 iterator __r = __f1 = __sort(__f1, __e1, __n2, __comp);
2121 iterator __f2 = __e1 = __sort(__e1, __e2, __n - __n2, __comp);