Lines Matching defs:SwitchStmt
1061 SwitchStmt::SwitchStmt(const ASTContext &Ctx, Stmt *Init, VarDecl *Var,
1082 SwitchStmt::SwitchStmt(EmptyShell Empty, bool HasInit, bool HasVar)
1089 SwitchStmt *SwitchStmt::Create(const ASTContext &Ctx, Stmt *Init, VarDecl *Var,
1096 alignof(SwitchStmt));
1097 return new (Mem) SwitchStmt(Ctx, Init, Var, Cond, LParenLoc, RParenLoc);
1100 SwitchStmt *SwitchStmt::CreateEmpty(const ASTContext &Ctx, bool HasInit,
1104 alignof(SwitchStmt));
1105 return new (Mem) SwitchStmt(EmptyShell(), HasInit, HasVar);
1108 VarDecl *SwitchStmt::getConditionVariable() {
1115 void SwitchStmt::setConditionVariable(const ASTContext &Ctx, VarDecl *V) {