Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtIterator.h27 class StmtIteratorBase {
43 StmtIteratorBase(Stmt **s) : stmt(s) {} in StmtIteratorBase() function
44 StmtIteratorBase(const VariableArrayType *t);
45 StmtIteratorBase(Decl **dgi, Decl **dge);
46 StmtIteratorBase() : stmt(nullptr) {} in StmtIteratorBase() function
77 class StmtIteratorImpl : public StmtIteratorBase {
79 StmtIteratorImpl(const StmtIteratorBase& RHS) : StmtIteratorBase(RHS) {} in StmtIteratorImpl()
89 StmtIteratorImpl(Stmt **s) : StmtIteratorBase(s) {} in StmtIteratorImpl()
90 StmtIteratorImpl(Decl **dgi, Decl **dge) : StmtIteratorBase(dgi, dge) {} in StmtIteratorImpl()
91 StmtIteratorImpl(const VariableArrayType *t) : StmtIteratorBase(t) {} in StmtIteratorImpl()
[all …]
H A DDecl.h930 friend class StmtIteratorBase; variable
3280 friend class StmtIteratorBase;
H A DType.h3733 friend class StmtIteratorBase;
3786 friend class StmtIteratorBase;
3841 friend class StmtIteratorBase;
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtIterator.cpp37 void StmtIteratorBase::NextVA() { in NextVA()
60 void StmtIteratorBase::NextDecl(bool ImmediateAdvance) { in NextDecl()
74 bool StmtIteratorBase::HandleDecl(Decl* D) { in HandleDecl()
99 StmtIteratorBase::StmtIteratorBase(Decl** dgi, Decl** dge) in StmtIteratorBase() function in StmtIteratorBase
104 StmtIteratorBase::StmtIteratorBase(const VariableArrayType* t) in StmtIteratorBase() function in StmtIteratorBase
109 Stmt*& StmtIteratorBase::GetDeclExpr() const { in GetDeclExpr()