Searched refs:user_iterator_impl (Results 1 – 1 of 1) sorted by relevance
169 class user_iterator_impl {171 explicit user_iterator_impl(Use *U) : UI(U) {} in user_iterator_impl() function181 user_iterator_impl() = default;183 bool operator==(const user_iterator_impl &x) const { return UI == x.UI; }184 bool operator!=(const user_iterator_impl &x) const { return !operator==(x); }187 bool atEnd() const { return *this == user_iterator_impl(); } in atEnd()189 user_iterator_impl &operator++() { // Preincrement194 user_iterator_impl operator++(int) { // Postincrement207 operator user_iterator_impl<const UserTy>() const {208 return user_iterator_impl<const UserTy>(*UI);[all …]