Home
last modified time | relevance | path

Searched refs:_Self (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/libunwind/src/
H A DUnwindCursor.hpp1403 typedef EHABISectionIterator _Self; typedef
1411 static _Self begin(A& addressSpace, const UnwindInfoSections& sects) { in begin()
1412 return _Self(addressSpace, sects, 0); in begin()
1414 static _Self end(A& addressSpace, const UnwindInfoSections& sects) { in end()
1415 return _Self(addressSpace, sects, in end()
1422 _Self& operator++() { ++_i; return *this; } in operator ++()
1423 _Self& operator+=(size_t a) { _i += a; return *this; } in operator +=()
1424 _Self& operator--() { assert(_i > 0); --_i; return *this; } in operator --()
1425 _Self& operator-=(size_t a) { assert(_i >= a); _i -= a; return *this; } in operator -=()
1427 _Self operator+(size_t a) { _Self out = *this; out._i += a; return out; } in operator +()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dvariant1320 …template <__variant_visit_barrier_tag = __variant_visit_barrier_tag{}, class _Self, class _Visitor>
1321 _LIBCPP_HIDE_FROM_ABI constexpr decltype(auto) visit(this _Self&& __self, _Visitor&& __visitor) {
1322 using _VariantT = _OverrideRef<_Self&&, _CopyConst<remove_reference_t<_Self>, variant>>;
1326 template <class _Rp, class _Self, class _Visitor>
1327 _LIBCPP_HIDE_FROM_ABI constexpr _Rp visit(this _Self&& __self, _Visitor&& __visitor) {
1328 using _VariantT = _OverrideRef<_Self&&, _CopyConst<remove_reference_t<_Self>, variant>>;