Searched refs:_Self (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/libcxx/include/__flat_map/ |
| H A D | flat_multimap.h | 763 template <class _Self, class _KeyIter> 764 …_LIBCPP_HIDE_FROM_ABI static auto __corresponding_mapped_it(_Self&& __self, _KeyIter&& __key_iter)… in __corresponding_mapped_it() 793 template <class _Self, class _Kp> 794 _LIBCPP_HIDE_FROM_ABI static auto __find_impl(_Self&& __self, const _Kp& __key) { in __find_impl() 803 template <class _Self, class _Kp> 804 _LIBCPP_HIDE_FROM_ABI static auto __equal_range_impl(_Self&& __self, const _Kp& __key) { in __equal_range_impl() 813 template <class _Res, class _Self, class _Kp> 814 _LIBCPP_HIDE_FROM_ABI static _Res __lower_bound(_Self&& __self, _Kp& __x) { in __lower_bound() 821 template <class _Res, class _Self, class _Kp> 822 _LIBCPP_HIDE_FROM_ABI static _Res __upper_bound(_Self&& __self, _Kp& __x) { in __upper_bound()
|
| H A D | flat_map.h | 932 template <class _Self, class _KeyIter> 934 __corresponding_mapped_it(_Self&& __self, _KeyIter&& __key_iter) { in __corresponding_mapped_it() 969 template <class _Self, class _Kp> 970 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 static auto __find_impl(_Self&& __self, const … in __find_impl() 979 template <class _Self, class _Kp> 980 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 static auto __key_equal_range(_Self&& __self, … in __key_equal_range() 990 template <class _Self, class _Kp> 991 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 static auto __equal_range_impl(_Self&& __self,… in __equal_range_impl() 998 template <class _Res, class _Self, class _Kp> 999 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 static _Res __lower_bound(_Self&& __self, _Kp&… in __lower_bound() [all …]
|
| /freebsd/contrib/llvm-project/libunwind/src/ |
| H A D | UnwindCursor.hpp | 1435 typedef EHABISectionIterator _Self; typedef 1443 static _Self begin(A& addressSpace, const UnwindInfoSections& sects) { in begin() 1444 return _Self(addressSpace, sects, 0); in begin() 1446 static _Self end(A& addressSpace, const UnwindInfoSections& sects) { in end() 1447 return _Self(addressSpace, sects, in end() 1454 _Self& operator++() { ++_i; return *this; } in operator ++() 1455 _Self& operator+=(size_t a) { _i += a; return *this; } in operator +=() 1456 _Self& operator--() { assert(_i > 0); --_i; return *this; } in operator --() 1457 _Self& operator-=(size_t a) { assert(_i >= a); _i -= a; return *this; } in operator -=() 1459 _Self operator+(size_t a) { _Self out = *this; out._i += a; return out; } in operator +() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__flat_set/ |
| H A D | flat_multiset.h | 651 template <class _Self, class _Kp> 652 _LIBCPP_HIDE_FROM_ABI static auto __find_impl(_Self&& __self, const _Kp& __key) { in __find_impl() 661 template <class _Self, class _Kp> 662 _LIBCPP_HIDE_FROM_ABI static auto __equal_range_impl(_Self&& __self, const _Kp& __key) { in __equal_range_impl() 663 using __iter = _If<is_const_v<__libcpp_remove_reference_t<_Self>>, const_iterator, iterator>; in __equal_range_impl()
|
| H A D | flat_set.h | 697 template <class _Self, class _Kp> 698 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 static auto __find_impl(_Self&& __self, const … in __find_impl() 707 template <class _Self, class _Kp> 708 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX26 static auto __equal_range_impl(_Self&& __self,… in __equal_range_impl() 709 using __iter = _If<is_const_v<__libcpp_remove_reference_t<_Self>>, const_iterator, iterator>; in __equal_range_impl()
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | variant | 1310 …template <__variant_visit_barrier_tag = __variant_visit_barrier_tag{}, class _Self, class _Visitor> 1311 _LIBCPP_HIDE_FROM_ABI constexpr decltype(auto) visit(this _Self&& __self, _Visitor&& __visitor) { 1312 return std::visit(std::forward<_Visitor>(__visitor), std::__forward_as<_Self, variant>(__self)); 1315 template <class _Rp, class _Self, class _Visitor> 1316 _LIBCPP_HIDE_FROM_ABI constexpr _Rp visit(this _Self&& __self, _Visitor&& __visitor) { 1317 …return std::visit<_Rp>(std::forward<_Visitor>(__visitor), std::__forward_as<_Self, variant>(__self…
|