Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/libstdc++/include/bits/
Dstl_list.h114 typedef _List_iterator<_Tp> _Self; typedef
139 _Self&
146 _Self
149 _Self __tmp = *this;
154 _Self&
161 _Self
164 _Self __tmp = *this;
170 operator==(const _Self& __x) const
174 operator!=(const _Self& __x) const
191 typedef _List_const_iterator<_Tp> _Self; typedef
[all …]
Dstl_deque.h117 typedef _Deque_iterator _Self; typedef
142 _Self&
154 _Self
157 _Self __tmp = *this;
162 _Self&
174 _Self
177 _Self __tmp = *this;
182 _Self&
201 _Self
204 _Self __tmp = *this;
[all …]
Dstl_tree.h163 typedef _Rb_tree_iterator<_Tp> _Self; typedef
182 _Self&
189 _Self
192 _Self __tmp = *this;
197 _Self&
204 _Self
207 _Self __tmp = *this;
213 operator==(const _Self& __x) const
217 operator!=(const _Self& __x) const
235 typedef _Rb_tree_const_iterator<_Tp> _Self; typedef
[all …]
Ddeque.tcc761 typedef typename _Deque_iterator<_Tp, _Tp&, _Tp*>::_Self _Self; in fill() typedef
763 for (typename _Self::_Map_pointer __node = __first._M_node + 1; in fill()
765 std::fill(*__node, *__node + _Self::_S_buffer_size(), __value); in fill()
/freebsd-12-stable/contrib/llvm-project/libunwind/src/
DUnwindCursor.hpp1281 typedef EHABISectionIterator _Self; typedef
1289 static _Self begin(A& addressSpace, const UnwindInfoSections& sects) { in begin()
1290 return _Self(addressSpace, sects, 0); in begin()
1292 static _Self end(A& addressSpace, const UnwindInfoSections& sects) { in end()
1293 return _Self(addressSpace, sects, in end()
1300 _Self& operator++() { ++_i; return *this; } in operator ++()
1301 _Self& operator+=(size_t a) { _i += a; return *this; } in operator +=()
1302 _Self& operator--() { assert(_i > 0); --_i; return *this; } in operator --()
1303 _Self& operator-=(size_t a) { assert(_i >= a); _i -= a; return *this; } in operator -=()
1305 _Self operator+(size_t a) { _Self out = *this; out._i += a; return out; } in operator +()
[all …]
/freebsd-12-stable/contrib/libstdc++/include/ext/
Dslist188 typedef _Slist_iterator<_Tp, _Ref, _Ptr> _Self;
213 _Self&
220 _Self
223 _Self __tmp = *this;
/freebsd-12-stable/contrib/libstdc++/include/debug/
Dsafe_iterator.h70 typedef _Safe_iterator _Self; typedef