Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DValue.h164 class user_iterator_impl
167 explicit user_iterator_impl(Use *U) : UI(U) {} in user_iterator_impl() function
171 user_iterator_impl() = default;
173 bool operator==(const user_iterator_impl &x) const { return UI == x.UI; }
177 bool atEnd() const { return *this == user_iterator_impl(); } in atEnd()
179 user_iterator_impl &operator++() { // Preincrement
184 user_iterator_impl operator++(int) { // Postincrement
197 operator user_iterator_impl<const UserTy>() const {
198 return user_iterator_impl<const UserTy>(*UI);
369 using user_iterator = user_iterator_impl<User>;
[all …]