HomeSort by relevance Sort by last modified time
    Searched refs:_Self (Results 1 - 23 of 23) sorted by null

  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
ConstantsScanner.h 30 typedef constant_iterator _Self;
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;
IntervalIterator.h 97 typedef IntervalIterator<NodeTy, OrigContainer_t> _Self;
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;
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
STLExtras.h 81 typedef mapped_iterator<RootIt, UnaryFunc> _Self;
95 _Self& operator++() { ++current; return *this; }
96 _Self& operator--() { --current; return *this; }
97 _Self operator++(int) { _Self __tmp = *this; ++current; return __tmp; }
98 _Self operator--(int) { _Self __tmp = *this; --current; return __tmp; }
99 _Self operator+ (difference_type n) const {
100 return _Self(current + n, Fn);
102 _Self& operator+= (difference_type n) { current += n; return *this;
    [all...]
SCCIterator.h 138 typedef scc_iterator<GraphT, GT> _Self;
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 tmp = *this; ++*this; return tmp
    [all...]
DepthFirstIterator.h 131 typedef df_iterator<GraphT, SetType, ExtStorage, GT> _Self;
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& x) const
    [all...]
PostOrderIterator.h 93 typedef po_iterator<GraphT, SetType, ExtStorage, GT> _Self;
96 static inline _Self begin(GraphT G) { return _Self(GT::getEntryNode(G)); }
97 static inline _Self end (GraphT G) { return _Self(); }
99 static inline _Self begin(GraphT G, SetType &S) {
100 return _Self(GT::getEntryNode(G), S);
102 static inline _Self end (GraphT G, SetType &S) { return _Self(S); }
104 inline bool operator==(const _Self& x) const
    [all...]
ImmutableSet.h 652 typedef ImutAVLTreeGenericIterator<ImutInfo> _Self;
693 inline bool operator==(const _Self& x) const {
702 inline bool operator!=(const _Self& x) const { return !operator==(x); }
704 _Self& operator++() {
730 _Self& operator--() {
763 typedef ImutAVLTreeInOrderIterator<ImutInfo> _Self;
771 inline bool operator==(const _Self& x) const {
775 inline bool operator!=(const _Self& x) const { return !operator==(x); }
780 inline _Self& operator++() {
788 inline _Self& operator--()
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
Use.h 169 typedef value_use_iterator<UserTy> _Self;
178 value_use_iterator(const _Self &I) : U(I.U) {}
181 bool operator==(const _Self &x) const {
184 bool operator!=(const _Self &x) const {
192 _Self &operator++() { // Preincrement
197 _Self operator++(int) { // Postincrement
198 _Self tmp = *this; ++*this; return tmp;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_list.h 127 typedef _List_iterator<_Tp> _Self;
152 _Self&
159 _Self
162 _Self __tmp = *this;
167 _Self&
174 _Self
177 _Self __tmp = *this;
183 operator==(const _Self& __x) const
187 operator!=(const _Self& __x) const
202 typedef _List_const_iterator<_Tp> _Self;
    [all...]
forward_list.h 123 typedef _Fwd_list_iterator<_Tp> _Self;
147 _Self&
154 _Self
157 _Self __tmp(*this);
163 operator==(const _Self& __x) const
167 operator!=(const _Self& __x) const
170 _Self
190 typedef _Fwd_list_const_iterator<_Tp> _Self;
218 _Self&
225 _Self
    [all...]
stl_deque.h 121 typedef _Deque_iterator _Self;
147 _Self&
159 _Self
162 _Self __tmp = *this;
167 _Self&
179 _Self
182 _Self __tmp = *this;
187 _Self&
206 _Self
209 _Self __tmp = *this
    [all...]
stl_tree.h 166 typedef _Rb_tree_iterator<_Tp> _Self;
186 _Self&
193 _Self
196 _Self __tmp = *this;
201 _Self&
208 _Self
211 _Self __tmp = *this;
217 operator==(const _Self& __x) const
221 operator!=(const _Self& __x) const
239 typedef _Rb_tree_const_iterator<_Tp> _Self;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_list.h 127 typedef _List_iterator<_Tp> _Self;
152 _Self&
159 _Self
162 _Self __tmp = *this;
167 _Self&
174 _Self
177 _Self __tmp = *this;
183 operator==(const _Self& __x) const
187 operator!=(const _Self& __x) const
202 typedef _List_const_iterator<_Tp> _Self;
    [all...]
forward_list.h 123 typedef _Fwd_list_iterator<_Tp> _Self;
147 _Self&
154 _Self
157 _Self __tmp(*this);
163 operator==(const _Self& __x) const
167 operator!=(const _Self& __x) const
170 _Self
190 typedef _Fwd_list_const_iterator<_Tp> _Self;
218 _Self&
225 _Self
    [all...]
stl_deque.h 121 typedef _Deque_iterator _Self;
147 _Self&
159 _Self
162 _Self __tmp = *this;
167 _Self&
179 _Self
182 _Self __tmp = *this;
187 _Self&
206 _Self
209 _Self __tmp = *this
    [all...]
stl_tree.h 166 typedef _Rb_tree_iterator<_Tp> _Self;
186 _Self&
193 _Self
196 _Self __tmp = *this;
201 _Self&
208 _Self
211 _Self __tmp = *this;
217 operator==(const _Self& __x) const
221 operator!=(const _Self& __x) const
239 typedef _Rb_tree_const_iterator<_Tp> _Self;
    [all...]
  /external/libunwind_llvm/src/
UnwindCursor.hpp 719 typedef EHABISectionIterator _Self;
728 static _Self begin(A& addressSpace, const UnwindInfoSections& sects) {
729 return _Self(addressSpace, sects, 0);
731 static _Self end(A& addressSpace, const UnwindInfoSections& sects) {
732 return _Self(addressSpace, sects,
739 _Self& operator++() { ++_i; return *this; }
740 _Self& operator+=(size_t a) { _i += a; return *this; }
741 _Self& operator--() { assert(_i > 0); --_i; return *this; }
742 _Self& operator-=(size_t a) { assert(_i >= a); _i -= a; return *this; }
744 _Self operator+(size_t a) { _Self out = *this; out._i += a; return out;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/debug/
safe_local_iterator.h 54 typedef _Safe_local_iterator _Self;
safe_iterator.h 118 typedef _Safe_iterator _Self;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/profile/
iterator_tracker.h 42 typedef __iterator_tracker _Self;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/debug/
safe_local_iterator.h 54 typedef _Safe_local_iterator _Self;
safe_iterator.h 118 typedef _Safe_iterator _Self;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/profile/
iterator_tracker.h 42 typedef __iterator_tracker _Self;

Completed in 291 milliseconds