HomeSort by relevance Sort by last modified time
    Searched refs:ConstExprIterator (Results 1 - 5 of 5) sorted by null

  /external/clang/include/clang/AST/
Stmt.h 80 class ConstExprIterator {
83 ConstExprIterator(const Stmt * const *i) : I(i) {}
84 ConstExprIterator() : I(0) {}
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& R) const { return I > R.I;
    [all...]
ExprCXX.h     [all...]
ExprObjC.h     [all...]
Expr.h     [all...]
  /external/clang/lib/AST/
Expr.cpp     [all...]

Completed in 155 milliseconds