Searched refs:_Self (Results 1 - 12 of 12) sorted by relevance

/freebsd-10.3-release/contrib/llvm/include/llvm/Analysis/
H A DConstantsScanner.h30 typedef constant_iterator _Self; typedef in class:llvm::constant_iterator
50 inline bool operator==(const _Self& x) const { return OpIdx == x.OpIdx &&
52 inline bool operator!=(const _Self& x) const { return !operator==(x); }
60 inline _Self& operator++() { // Preincrement implementation
76 inline _Self operator++(int) { // Postincrement
77 _Self tmp = *this; ++*this; return tmp;
H A DIntervalIterator.h97 typedef IntervalIterator<NodeTy, OrigContainer_t> _Self; typedef in class:llvm::IntervalIterator
123 inline bool operator==(const _Self& x) const { return IntStack == x.IntStack;}
124 inline bool operator!=(const _Self& x) const { return !operator==(x); }
131 _Self& operator++() { // Preincrement
153 inline _Self operator++(int) { // Postincrement
154 _Self tmp = *this; ++*this; return tmp;
/freebsd-10.3-release/contrib/llvm/include/llvm/ADT/
H A DSTLExtras.h91 typedef mapped_iterator<RootIt, UnaryFunc> _Self; typedef in class:llvm::mapped_iterator
105 _Self& operator++() { ++current; return *this; }
106 _Self& operator--() { --current; return *this; }
107 _Self operator++(int) { _Self __tmp = *this; ++current; return __tmp; }
108 _Self operator--(int) { _Self __tmp = *this; --current; return __tmp; }
109 _Self operator+ (difference_type n) const {
110 return _Self(current + n, Fn);
112 _Self
[all...]
H A DDepthFirstIterator.h131 typedef df_iterator<GraphT, SetType, ExtStorage, GT> _Self; typedef in class:llvm::df_iterator
134 static inline _Self begin(const GraphT& G) {
135 return _Self(GT::getEntryNode(G));
137 static inline _Self end(const GraphT& G) { return _Self(); }
140 static inline _Self begin(const GraphT& G, SetType &S) {
141 return _Self(GT::getEntryNode(G), S);
143 static inline _Self end(const GraphT& G, SetType &S) { return _Self(S); }
145 inline bool operator==(const _Self
[all...]
H A DPostOrderIterator.h133 typedef po_iterator<GraphT, SetType, ExtStorage, GT> _Self; typedef in class:llvm::po_iterator
136 static inline _Self begin(GraphT G) { return _Self(GT::getEntryNode(G)); }
137 static inline _Self end (GraphT G) { return _Self(); }
139 static inline _Self begin(GraphT G, SetType &S) {
140 return _Self(GT::getEntryNode(G), S);
142 static inline _Self end (GraphT G, SetType &S) { return _Self(S); }
144 inline bool operator==(const _Self
[all...]
H A DSCCIterator.h138 typedef scc_iterator<GraphT, GT> _Self; typedef in class:llvm::scc_iterator
141 static inline _Self begin(const GraphT &G){return _Self(GT::getEntryNode(G));}
142 static inline _Self end (const GraphT &) { return _Self(); }
150 inline bool operator==(const _Self& x) const {
153 inline bool operator!=(const _Self& x) const { return !operator==(x); }
156 inline _Self& operator++() { // Preincrement
160 inline _Self operator++(int) { // Postincrement
161 _Self tm
[all...]
H A DImmutableSet.h657 typedef ImutAVLTreeGenericIterator<ImutInfo> _Self; typedef in class:llvm::ImutAVLTreeGenericIterator
698 inline bool operator==(const _Self& x) const {
707 inline bool operator!=(const _Self& x) const { return !operator==(x); }
709 _Self& operator++() {
735 _Self& operator--() {
768 typedef ImutAVLTreeInOrderIterator<ImutInfo> _Self; typedef in class:llvm::ImutAVLTreeInOrderIterator
776 inline bool operator==(const _Self& x) const {
780 inline bool operator!=(const _Self& x) const { return !operator==(x); }
785 inline _Self& operator++() {
793 inline _Self
[all...]
/freebsd-10.3-release/contrib/llvm/include/llvm/IR/
H A DUse.h171 typedef value_use_iterator<UserTy> _Self; typedef in class:llvm::value_use_iterator
182 bool operator==(const _Self &x) const {
185 bool operator!=(const _Self &x) const {
193 _Self &operator++() { // Preincrement
198 _Self operator++(int) { // Postincrement
199 _Self tmp = *this; ++*this; return tmp;
/freebsd-10.3-release/contrib/libstdc++/include/bits/
H A Dstl_list.h114 typedef _List_iterator<_Tp> _Self; typedef in struct:_List_iterator
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 in struct:_List_const_iterator
[all...]
H A Dstl_tree.h163 typedef _Rb_tree_iterator<_Tp> _Self; typedef in struct:_Rb_tree_iterator
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 in struct:_Rb_tree_const_iterator
[all...]
H A Dstl_deque.h117 typedef _Deque_iterator _Self; typedef in struct:_Deque_iterator
142 _Self&
154 _Self
157 _Self __tmp = *this;
162 _Self&
174 _Self
177 _Self __tmp = *this;
182 _Self&
201 _Self
204 _Self __tm
[all...]
/freebsd-10.3-release/contrib/libstdc++/include/debug/
H A Dsafe_iterator.h70 typedef _Safe_iterator _Self; typedef in class:__gnu_debug::_Safe_iterator

Completed in 125 milliseconds