Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DValue.h170 class user_iterator_impl {
172 explicit user_iterator_impl(Use *U) : UI(U) {} in user_iterator_impl() function
182 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++() { // Preincrement
195 user_iterator_impl operator++(int) { // Postincrement
208 operator user_iterator_impl<const UserTy>() const {
209 return user_iterator_impl<const UserTy>(*UI);
[all …]