Home | History | Annotate | Download | only in AST

Lines Matching defs:Current

116     /// Current - The current declaration.
117 decl_type *Current;
127 redecl_iterator() : Current(0) { }
128 explicit redecl_iterator(decl_type *C) : Current(C), Starter(C) { }
130 reference operator*() const { return Current; }
131 pointer operator->() const { return Current; }
134 assert(Current && "Advancing while iterator has reached end");
136 decl_type *Next = Current->RedeclLink.getNext();
137 Current = (Next != Starter ? Next : 0);
148 return x.Current == y.Current;
151 return x.Current != y.Current;