Home
last modified time | relevance | path

Searched refs:user_iterator_impl (Results 1 – 1 of 1) sorted by relevance

/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DValue.h169 class user_iterator_impl {
171 explicit user_iterator_impl(Use *U) : UI(U) {} in user_iterator_impl() function
181 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++() { // Preincrement
194 user_iterator_impl operator++(int) { // Postincrement
207 operator user_iterator_impl<const UserTy>() const {
208 return user_iterator_impl<const UserTy>(*UI);
[all …]