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

/external/clang/include/clang/AST/
H A DStmt.h80 class ConstExprIterator { class in namespace:clang
83 ConstExprIterator(const Stmt * const *i) : I(i) {} function in class:clang::ConstExprIterator
84 ConstExprIterator() : I(nullptr) {} function in class:clang::ConstExprIterator
85 ConstExprIterator& operator++() { ++I; return *this; }
86 ConstExprIterator operator+(size_t i) const { return I+i; }
87 ConstExprIterator operator-(size_t i) const { return I-i; }
89 signed operator-(const ConstExprIterator& R) const { return I - R.I; }
92 bool operator==(const ConstExprIterator& R) const { return I == R.I; }
93 bool operator!=(const ConstExprIterator& R) const { return I != R.I; }
94 bool operator>(const ConstExprIterator
[all...]

Completed in 104 milliseconds