Home | History | Annotate | Download | only in AST

Lines Matching refs:WhileStmt

1002 /// WhileStmt - This represents a 'while' stmt.
1004 class WhileStmt : public Stmt {
1009 WhileStmt(ASTContext &C, VarDecl *Var, Expr *cond, Stmt *body,
1013 explicit WhileStmt(EmptyShell Empty) : Stmt(WhileStmtClass, Empty) { }
1026 /// If this WhileStmt has a condition variable, return the faux DeclStmt
1048 static bool classof(const WhileStmt *) { return true; }