Lines Matching refs:__pos
1095 basic_string&& __str, size_type __pos, const _Allocator& __alloc = _Allocator())
1096 : basic_string(std::move(__str), __pos, npos, __alloc) {}
1099 … basic_string&& __str, size_type __pos, size_type __n, const _Allocator& __alloc = _Allocator())
1101 if (__pos > __str.size())
1104 auto __len = std::min<size_type>(__n, __str.size() - __pos);
1106 __move_assign(std::move(__str), __pos, __len);
1109 __init(__str.data() + __pos, __len);
1121 …basic_string(const basic_string& __str, size_type __pos, size_type __n, const _Allocator& __a = _A…
1124 if (__pos > __str_sz)
1126 __init(__str.data() + __pos, std::min(__n, __str_sz - __pos));
1130 basic_string(const basic_string& __str, size_type __pos, const _Allocator& __a = _Allocator())
1133 if (__pos > __str_sz)
1135 __init(__str.data() + __pos, __str_sz - __pos);
1143 …basic_string(const _Tp& __t, size_type __pos, size_type __n, const allocator_type& __a = allocator…
1146 __self_view __sv = __sv0.substr(__pos, __n);
1327 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 const_reference operator[](size_type __pos) co…
1328 _LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(__pos <= size(), "string index out of bounds");
1329 if (__builtin_constant_p(__pos) && !__fits_in_sso(__pos)) {
1330 return *(__get_long_pointer() + __pos);
1332 return *(data() + __pos);
1335 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 reference operator[](size_type __pos) _NOEXCEP…
1336 _LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(__pos <= size(), "string index out of bounds");
1337 if (__builtin_constant_p(__pos) && !__fits_in_sso(__pos)) {
1338 return *(__get_long_pointer() + __pos);
1340 return *(__get_pointer() + __pos);
1389 …_LIBCPP_CONSTEXPR_SINCE_CXX20 basic_string& append(const basic_string& __str, size_type __pos, siz…
1398 append(const _Tp& __t, size_type __pos, size_type __n = npos);
1463 …_LIBCPP_HIDE_FROM_ABI constexpr void __move_assign(basic_string&& __str, size_type __pos, size_typ…
1473 _Traits::move(data(), data() + __pos, __len);
1495 …_LIBCPP_CONSTEXPR_SINCE_CXX20 basic_string& assign(const basic_string& __str, size_type __pos, siz…
1502 assign(const _Tp& __t, size_type __pos, size_type __n = npos);
1558 …_LIBCPP_CONSTEXPR_SINCE_CXX20 basic_string& insert(size_type __pos, const value_type* __s, size_ty…
1559 _LIBCPP_CONSTEXPR_SINCE_CXX20 basic_string& insert(size_type __pos, const value_type* __s);
1560 …_LIBCPP_CONSTEXPR_SINCE_CXX20 basic_string& insert(size_type __pos, size_type __n, value_type __c);
1561 _LIBCPP_CONSTEXPR_SINCE_CXX20 iterator insert(const_iterator __pos, value_type __c);
1578 insert(const_iterator __pos, size_type __n, value_type __c) {
1579 difference_type __p = __pos - begin();
1586 insert(const_iterator __pos, _InputIterator __first, _InputIterator __last);
1590 insert(const_iterator __pos, _ForwardIterator __first, _ForwardIterator __last);
1594 insert(const_iterator __pos, initializer_list<value_type> __il) {
1595 return insert(__pos, __il.begin(), __il.end());
1599 _LIBCPP_CONSTEXPR_SINCE_CXX20 basic_string& erase(size_type __pos = 0, size_type __n = npos);
1600 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 iterator erase(const_iterator __pos);
1626 replace(size_type __pos, size_type __n1, const value_type* __s, size_type __n2);
1627 …_LIBCPP_CONSTEXPR_SINCE_CXX20 basic_string& replace(size_type __pos, size_type __n1, const value_t…
1628 …_LIBCPP_CONSTEXPR_SINCE_CXX20 basic_string& replace(size_type __pos, size_type __n1, size_type __n…
1678 …_LIBCPP_CONSTEXPR_SINCE_CXX20 size_type copy(value_type* __s, size_type __n, size_type __pos = 0) …
1682 substr(size_type __pos = 0, size_type __n = npos) const {
1683 return basic_string(*this, __pos, __n);
1686 …_LIBCPP_HIDE_FROM_ABI constexpr basic_string substr(size_type __pos = 0, size_type __n = npos) con…
1687 return basic_string(*this, __pos, __n);
1690 …_LIBCPP_HIDE_FROM_ABI constexpr basic_string substr(size_type __pos = 0, size_type __n = npos) && {
1691 return basic_string(std::move(*this), __pos, __n);
1717 find(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT;
1721 find(const _Tp& __t, size_type __pos = 0) const _NOEXCEPT;
1723 …_LIBCPP_CONSTEXPR_SINCE_CXX20 size_type find(const value_type* __s, size_type __pos, size_type __n…
1725 find(const value_type* __s, size_type __pos = 0) const _NOEXCEPT;
1726 _LIBCPP_CONSTEXPR_SINCE_CXX20 size_type find(value_type __c, size_type __pos = 0) const _NOEXCEPT;
1729 rfind(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
1733 rfind(const _Tp& __t, size_type __pos = npos) const _NOEXCEPT;
1735 …_LIBCPP_CONSTEXPR_SINCE_CXX20 size_type rfind(const value_type* __s, size_type __pos, size_type __…
1737 rfind(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
1738 …_LIBCPP_CONSTEXPR_SINCE_CXX20 size_type rfind(value_type __c, size_type __pos = npos) const _NOEXC…
1741 find_first_of(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT;
1745 find_first_of(const _Tp& __t, size_type __pos = 0) const _NOEXCEPT;
1748 find_first_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
1750 find_first_of(const value_type* __s, size_type __pos = 0) const _NOEXCEPT;
1752 find_first_of(value_type __c, size_type __pos = 0) const _NOEXCEPT;
1755 find_last_of(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
1759 find_last_of(const _Tp& __t, size_type __pos = npos) const _NOEXCEPT;
1762 find_last_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
1764 find_last_of(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
1766 find_last_of(value_type __c, size_type __pos = npos) const _NOEXCEPT;
1769 find_first_not_of(const basic_string& __str, size_type __pos = 0) const _NOEXCEPT;
1773 find_first_not_of(const _Tp& __t, size_type __pos = 0) const _NOEXCEPT;
1776 find_first_not_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
1778 find_first_not_of(const value_type* __s, size_type __pos = 0) const _NOEXCEPT;
1780 find_first_not_of(value_type __c, size_type __pos = 0) const _NOEXCEPT;
1783 find_last_not_of(const basic_string& __str, size_type __pos = npos) const _NOEXCEPT;
1787 find_last_not_of(const _Tp& __t, size_type __pos = npos) const _NOEXCEPT;
1790 find_last_not_of(const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT;
1792 find_last_not_of(const value_type* __s, size_type __pos = npos) const _NOEXCEPT;
1794 find_last_not_of(value_type __c, size_type __pos = npos) const _NOEXCEPT;
1947 __insert_with_size(const_iterator __pos, _Iterator __first, _Sentinel __last, size_type __n);
2133 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void __erase_to_end(size_type __pos) {
2134 __null_terminate_at(std::__to_address(__get_pointer()), __pos);
2139 …_LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_NOINLINE void __erase_external_with_move(size_type __pos, si…
2793 basic_string<_CharT, _Traits, _Allocator>::assign(const basic_string& __str, size_type __pos, size_…
2795 if (__pos > __sz)
2797 return assign(__str.data() + __pos, std::min(__n, __sz - __pos));
2806 basic_string<_CharT, _Traits, _Allocator>::assign(const _Tp& __t, size_type __pos, size_type __n) {
2809 if (__pos > __sz)
2811 return assign(__sv.data() + __pos, std::min(__n, __sz - __pos));
2940 basic_string<_CharT, _Traits, _Allocator>::append(const basic_string& __str, size_type __pos, size_…
2942 if (__pos > __sz)
2944 return append(__str.data() + __pos, std::min(__n, __sz - __pos));
2953 basic_string<_CharT, _Traits, _Allocator>::append(const _Tp& __t, size_type __pos, size_type __n) {
2956 if (__pos > __sz)
2958 return append(__sv.data() + __pos, std::min(__n, __sz - __pos));
2972 basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos, const value_type* __s, size_type…
2975 if (__pos > __sz)
2982 size_type __n_move = __sz - __pos;
2984 if (std::__is_pointer_in_range(__p + __pos, __p + __sz, __s))
2986 traits_type::move(__p + __pos + __n, __p + __pos, __n_move);
2988 traits_type::move(__p + __pos, __s, __n);
2994 __grow_by_and_replace(__cap, __sz + __n - __cap, __sz, __pos, 0, __n, __s);
3000 basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos, size_type __n, value_type __c) {
3002 if (__pos > __sz)
3010 size_type __n_move = __sz - __pos;
3012 traits_type::move(__p + __pos + __n, __p + __pos, __n_move);
3014 __grow_by_without_replace(__cap, __sz + __n - __cap, __sz, __pos, 0, __n);
3017 traits_type::assign(__p + __pos, __n, __c);
3028 basic_string<_CharT, _Traits, _Allocator>::insert(const_iterator __pos, _InputIterator __first, _In…
3030 return insert(__pos, __temp.data(), __temp.data() + __temp.size());
3037 const_iterator __pos, _ForwardIterator __first, _ForwardIterator __last) {
3039 return __insert_with_size(__pos, __first, __last, __n);
3046 const_iterator __pos, _Iterator __first, _Sentinel __last, size_type __n) {
3047 size_type __ip = static_cast<size_type>(__pos - begin());
3085 basic_string<_CharT, _Traits, _Allocator>::insert(size_type __pos, const value_type* __s) {
3087 return insert(__pos, __s, traits_type::length(__s));
3092 basic_string<_CharT, _Traits, _Allocator>::insert(const_iterator __pos, value_type __c) {
3093 size_type __ip = static_cast<size_type>(__pos - begin());
3118 size_type __pos, size_type __n1, const value_type* __s, size_type __n2)
3122 if (__pos > __sz)
3124 __n1 = std::min(__n1, __sz - __pos);
3131 size_type __n_move = __sz - __pos - __n1;
3134 traits_type::move(__p + __pos, __s, __n2);
3135 traits_type::move(__p + __pos + __n2, __p + __pos + __n1, __n_move);
3138 if (std::__is_pointer_in_range(__p + __pos + 1, __p + __sz, __s)) {
3139 if (__p + __pos + __n1 <= __s)
3141 else // __p + __pos < __s < __p + __pos + __n1
3143 traits_type::move(__p + __pos, __s, __n1);
3144 __pos += __n1;
3150 traits_type::move(__p + __pos + __n2, __p + __pos + __n1, __n_move);
3153 traits_type::move(__p + __pos, __s, __n2);
3156 __grow_by_and_replace(__cap, __sz - __n1 + __n2 - __cap, __sz, __pos, __n1, __n2, __s);
3162 basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos, size_type __n1, size_type __n2,…
3164 if (__pos > __sz)
3166 __n1 = std::min(__n1, __sz - __pos);
3174 size_type __n_move = __sz - __pos - __n1;
3176 traits_type::move(__p + __pos + __n2, __p + __pos + __n1, __n_move);
3179 __grow_by_without_replace(__cap, __sz - __n1 + __n2 - __cap, __sz, __pos, __n1, __n2);
3182 traits_type::assign(__p + __pos, __n2, __c);
3222 basic_string<_CharT, _Traits, _Allocator>::replace(size_type __pos, size_type __n1, const value_typ…
3224 return replace(__pos, __n1, __s, traits_type::length(__s));
3230 // Does not check __pos against size()
3233 basic_string<_CharT, _Traits, _Allocator>::__erase_external_with_move(size_type __pos, size_type __…
3237 __n = std::min(__n, __sz - __pos);
3238 size_type __n_move = __sz - __pos - __n;
3240 traits_type::move(__p + __pos, __p + __pos + __n, __n_move);
3247 basic_string<_CharT, _Traits, _Allocator>::erase(size_type __pos, size_type __n) {
3248 if (__pos > size())
3251 __erase_to_end(__pos);
3253 __erase_external_with_move(__pos, __n);
3260 basic_string<_CharT, _Traits, _Allocator>::erase(const_iterator __pos) {
3262 __pos != end(), "string::erase(iterator) called with a non-dereferenceable iterator");
3264 size_type __r = static_cast<size_type>(__pos - __b);
3426 basic_string<_CharT, _Traits, _Allocator>::copy(value_type* __s, size_type __n, size_type __pos) co…
3428 if (__pos > __sz)
3430 size_type __rlen = std::min(__n, __sz - __pos);
3431 traits_type::copy(__s, data() + __pos, __rlen);
3471 basic_string<_CharT, _Traits, _Allocator>::find(const value_type* __s, size_type __pos, size_type _…
3473 return std::__str_find<value_type, size_type, traits_type, npos>(data(), size(), __s, __pos, __n);
3478 basic_string<_CharT, _Traits, _Allocator>::find(const basic_string& __str, size_type __pos) const _…
3479 …_find<value_type, size_type, traits_type, npos>(data(), size(), __str.data(), __pos, __str.size());
3485 basic_string<_CharT, _Traits, _Allocator>::find(const _Tp& __t, size_type __pos) const _NOEXCEPT {
3487 …tr_find<value_type, size_type, traits_type, npos>(data(), size(), __sv.data(), __pos, __sv.size());
3492 basic_string<_CharT, _Traits, _Allocator>::find(const value_type* __s, size_type __pos) const _NOEX…
3495 data(), size(), __s, __pos, traits_type::length(__s));
3500 basic_string<_CharT, _Traits, _Allocator>::find(value_type __c, size_type __pos) const _NOEXCEPT {
3501 return std::__str_find<value_type, size_type, traits_type, npos>(data(), size(), __c, __pos);
3509 const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT {
3511 …return std::__str_rfind<value_type, size_type, traits_type, npos>(data(), size(), __s, __pos, __n);
3516 basic_string<_CharT, _Traits, _Allocator>::rfind(const basic_string& __str, size_type __pos) const …
3517 …rfind<value_type, size_type, traits_type, npos>(data(), size(), __str.data(), __pos, __str.size());
3523 basic_string<_CharT, _Traits, _Allocator>::rfind(const _Tp& __t, size_type __pos) const _NOEXCEPT {
3525 …r_rfind<value_type, size_type, traits_type, npos>(data(), size(), __sv.data(), __pos, __sv.size());
3530 basic_string<_CharT, _Traits, _Allocator>::rfind(const value_type* __s, size_type __pos) const _NOE…
3533 data(), size(), __s, __pos, traits_type::length(__s));
3538 basic_string<_CharT, _Traits, _Allocator>::rfind(value_type __c, size_type __pos) const _NOEXCEPT {
3539 return std::__str_rfind<value_type, size_type, traits_type, npos>(data(), size(), __c, __pos);
3547 const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT {
3549 …td::__str_find_first_of<value_type, size_type, traits_type, npos>(data(), size(), __s, __pos, __n);
3554 basic_string<_CharT, _Traits, _Allocator>::find_first_of(const basic_string& __str, size_type __pos…
3556 data(), size(), __str.data(), __pos, __str.size());
3562 basic_string<_CharT, _Traits, _Allocator>::find_first_of(const _Tp& __t, size_type __pos) const _NO…
3565 data(), size(), __sv.data(), __pos, __sv.size());
3570 basic_string<_CharT, _Traits, _Allocator>::find_first_of(const value_type* __s, size_type __pos) co…
3573 data(), size(), __s, __pos, traits_type::length(__s));
3578 basic_string<_CharT, _Traits, _Allocator>::find_first_of(value_type __c, size_type __pos) const _NO…
3579 return find(__c, __pos);
3587 const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT {
3589 …std::__str_find_last_of<value_type, size_type, traits_type, npos>(data(), size(), __s, __pos, __n);
3594 basic_string<_CharT, _Traits, _Allocator>::find_last_of(const basic_string& __str, size_type __pos)…
3596 data(), size(), __str.data(), __pos, __str.size());
3602 basic_string<_CharT, _Traits, _Allocator>::find_last_of(const _Tp& __t, size_type __pos) const _NOE…
3605 data(), size(), __sv.data(), __pos, __sv.size());
3610 basic_string<_CharT, _Traits, _Allocator>::find_last_of(const value_type* __s, size_type __pos) con…
3613 data(), size(), __s, __pos, traits_type::length(__s));
3618 basic_string<_CharT, _Traits, _Allocator>::find_last_of(value_type __c, size_type __pos) const _NOE…
3619 return rfind(__c, __pos);
3627 const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT {
3629 …__str_find_first_not_of<value_type, size_type, traits_type, npos>(data(), size(), __s, __pos, __n);
3635 const basic_string& __str, size_type __pos) const _NOEXCEPT {
3637 data(), size(), __str.data(), __pos, __str.size());
3643 basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(const _Tp& __t, size_type __pos) const…
3646 data(), size(), __sv.data(), __pos, __sv.size());
3651 basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(const value_type* __s, size_type __pos…
3654 data(), size(), __s, __pos, traits_type::length(__s));
3659 basic_string<_CharT, _Traits, _Allocator>::find_first_not_of(value_type __c, size_type __pos) const…
3660 …std::__str_find_first_not_of<value_type, size_type, traits_type, npos>(data(), size(), __c, __pos);
3668 const value_type* __s, size_type __pos, size_type __n) const _NOEXCEPT {
3670 …:__str_find_last_not_of<value_type, size_type, traits_type, npos>(data(), size(), __s, __pos, __n);
3676 const basic_string& __str, size_type __pos) const _NOEXCEPT {
3678 data(), size(), __str.data(), __pos, __str.size());
3684 basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const _Tp& __t, size_type __pos) const …
3687 data(), size(), __sv.data(), __pos, __sv.size());
3692 basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(const value_type* __s, size_type __pos)…
3695 data(), size(), __s, __pos, traits_type::length(__s));
3700 basic_string<_CharT, _Traits, _Allocator>::find_last_not_of(value_type __c, size_type __pos) const …
3701 … std::__str_find_last_not_of<value_type, size_type, traits_type, npos>(data(), size(), __c, __pos);