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

  /external/clang/include/clang/AST/
Stmt.h 43 // ExprIterator - Iterators for iterating over Stmt* arrays that contain
51 class ExprIterator {
54 ExprIterator(Stmt** i) : I(i) {}
55 ExprIterator() : I(0) {}
56 ExprIterator& operator++() { ++I; return *this; }
57 ExprIterator operator-(size_t i) { return I-i; }
58 ExprIterator operator+(size_t i) { return I+i; }
61 signed operator-(const ExprIterator& R) const { return I - R.I; }
64 bool operator==(const ExprIterator& R) const { return I == R.I; }
65 bool operator!=(const ExprIterator& R) const { return I != R.I;
    [all...]
ExprObjC.h 843 typedef ExprIterator arg_iterator;
    [all...]
ExprCXX.h 872 typedef ExprIterator arg_iterator;
    [all...]
Expr.h     [all...]
  /external/clang/lib/AST/
Expr.cpp     [all...]

Completed in 40 milliseconds