Home
last modified time | relevance | path

Searched refs:StmtIteratorBase (Results 1 – 4 of 4) sorted by relevance

/external/clang/include/clang/AST/
DStmtIterator.h30 class StmtIteratorBase {
69 StmtIteratorBase(Stmt **s) : stmt(s), RawVAPtr(0) {} in StmtIteratorBase() function
70 StmtIteratorBase(const VariableArrayType *t);
71 StmtIteratorBase(Decl **dgi, Decl **dge);
72 StmtIteratorBase() : stmt(nullptr), RawVAPtr(0) {} in StmtIteratorBase() function
77 class StmtIteratorImpl : public StmtIteratorBase,
82 StmtIteratorImpl(const StmtIteratorBase& RHS) : StmtIteratorBase(RHS) {} in StmtIteratorImpl()
85 StmtIteratorImpl(Stmt **s) : StmtIteratorBase(s) {} in StmtIteratorImpl()
86 StmtIteratorImpl(Decl **dgi, Decl **dge) : StmtIteratorBase(dgi, dge) {} in StmtIteratorImpl()
87 StmtIteratorImpl(const VariableArrayType *t) : StmtIteratorBase(t) {} in StmtIteratorImpl()
DType.h95 class StmtIteratorBase;
2544 friend class StmtIteratorBase;
2606 friend class StmtIteratorBase;
2662 friend class StmtIteratorBase;
DDecl.h759 friend class StmtIteratorBase; variable
2496 friend class StmtIteratorBase; variable
/external/clang/lib/AST/
DStmtIterator.cpp33 void StmtIteratorBase::NextVA() { in NextVA()
56 void StmtIteratorBase::NextDecl(bool ImmediateAdvance) { in NextDecl()
70 bool StmtIteratorBase::HandleDecl(Decl* D) { in HandleDecl()
95 StmtIteratorBase::StmtIteratorBase(Decl** dgi, Decl** dge) in StmtIteratorBase() function in StmtIteratorBase
100 StmtIteratorBase::StmtIteratorBase(const VariableArrayType* t) in StmtIteratorBase() function in StmtIteratorBase
105 Stmt*& StmtIteratorBase::GetDeclExpr() const { in GetDeclExpr()