Lines Matching defs:WhileStmt
1121 WhileStmt::WhileStmt(const ASTContext &Ctx, VarDecl *Var, Expr *Cond,
1138 WhileStmt::WhileStmt(EmptyShell Empty, bool HasVar)
1143 WhileStmt *WhileStmt::Create(const ASTContext &Ctx, VarDecl *Var, Expr *Cond,
1150 alignof(WhileStmt));
1151 return new (Mem) WhileStmt(Ctx, Var, Cond, Body, WL, LParenLoc, RParenLoc);
1154 WhileStmt *WhileStmt::CreateEmpty(const ASTContext &Ctx, bool HasVar) {
1157 alignof(WhileStmt));
1158 return new (Mem) WhileStmt(EmptyShell(), HasVar);
1161 VarDecl *WhileStmt::getConditionVariable() {
1168 void WhileStmt::setConditionVariable(const ASTContext &Ctx, VarDecl *V) {