HomeSort by relevance Sort by last modified time
    Searched refs:_Self (Results 1 - 9 of 9) 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;
  /external/libunwind_llvm/src/
UnwindCursor.hpp     [all...]

Completed in 332 milliseconds