Searched defs:ConstExprIterator (Results 1 - 1 of 1) sorted by relevance

/external/clang/include/clang/AST/
H A DStmt.h74 class ConstExprIterator { class in namespace:clang
77 ConstExprIterator(const Stmt * const *i) : I(i) {} function in class:clang::ConstExprIterator
78 ConstExprIterator() : I(0) {} function in class:clang::ConstExprIterator
79 ConstExprIterator& operator++() { ++I; return *this; }
80 ConstExprIterator operator+(size_t i) const { return I+i; }
81 ConstExprIterator operator-(size_t i) const { return I-i; }
83 signed operator-(const ConstExprIterator& R) const { return I - R.I; }
86 bool operator==(const ConstExprIterator& R) const { return I == R.I; }
87 bool operator!=(const ConstExprIterator& R) const { return I != R.I; }
88 bool operator>(const ConstExprIterator
[all...]

Completed in 55 milliseconds