Searched refs:ExprIterator (Results 1 – 5 of 5) sorted by relevance
61 class ExprIterator {64 ExprIterator(Stmt** i) : I(i) {} in ExprIterator() function65 ExprIterator() : I(0) {} in ExprIterator() function66 ExprIterator& operator++() { ++I; return *this; }67 ExprIterator operator-(size_t i) { return I-i; }68 ExprIterator operator+(size_t i) { return I+i; }71 signed operator-(const ExprIterator& R) const { return I - R.I; }74 bool operator==(const ExprIterator& R) const { return I == R.I; }75 bool operator!=(const ExprIterator& R) const { return I != R.I; }76 bool operator>(const ExprIterator& R) const { return I > R.I; }[all …]
1370 typedef ExprIterator arg_iterator;
1154 typedef ExprIterator arg_iterator;1813 typedef ExprIterator arg_iterator;
2210 typedef ExprIterator arg_iterator;
3909 Expr* ExprIterator::operator[](size_t idx) { return cast<Expr>(I[idx]); } in operator []()3910 Expr* ExprIterator::operator*() const { return cast<Expr>(*I); } in operator *()3911 Expr* ExprIterator::operator->() const { return cast<Expr>(*I); } in operator ->()