Searched defs:WhileStmt (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/AST/
H A DStmt.cpp937 WhileStmt::WhileStmt(ASTContext &C, VarDecl *Var, Expr *cond, Stmt *body, function in class:WhileStmt
946 VarDecl *WhileStmt::getConditionVariable() const {
954 void WhileStmt::setConditionVariable(ASTContext &C, VarDecl *V) {
/external/clang/include/clang/AST/
H A DStmt.h1007 /// WhileStmt - This represents a 'while' stmt.
1009 class WhileStmt : public Stmt { class in namespace:clang
1014 WhileStmt(ASTContext &C, VarDecl *Var, Expr *cond, Stmt *body,
1018 explicit WhileStmt(EmptyShell Empty) : Stmt(WhileStmtClass, Empty) { } function in class:clang::WhileStmt
1031 /// If this WhileStmt has a condition variable, return the faux DeclStmt
1053 static bool classof(const WhileStmt *) { return true; }

Completed in 136 milliseconds