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 76 class ConstExprIterator {
79 ConstExprIterator(const Stmt * const *i) : I(i) {}
80 ConstExprIterator() : I(0) {}
81 ConstExprIterator& operator++() { ++I; return *this; }
82 ConstExprIterator operator+(size_t i) const { return I+i; }
83 ConstExprIterator operator-(size_t i) const { return I-i; }
85 signed operator-(const ConstExprIterator& R) const { return I - R.I; }
88 bool operator==(const ConstExprIterator& R) const { return I == R.I; }
89 bool operator!=(const ConstExprIterator& R) const { return I != R.I; }
90 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 39 milliseconds