Searched refs:user_iterator_impl (Results 1 – 1 of 1) sorted by relevance
170 class user_iterator_impl {172 explicit user_iterator_impl(Use *U) : UI(U) {} in user_iterator_impl() function182 user_iterator_impl() = default;184 bool operator==(const user_iterator_impl &x) const { return UI == x.UI; }185 bool operator!=(const user_iterator_impl &x) const { return !operator==(x); }188 bool atEnd() const { return *this == user_iterator_impl(); } in atEnd()190 user_iterator_impl &operator++() { // Preincrement195 user_iterator_impl operator++(int) { // Postincrement208 operator user_iterator_impl<const UserTy>() const {209 return user_iterator_impl<const UserTy>(*UI);[all …]