Lines Matching defs:SwitchStmt
1053 SwitchStmt::SwitchStmt(const ASTContext &Ctx, Stmt *Init, VarDecl *Var,
1074 SwitchStmt::SwitchStmt(EmptyShell Empty, bool HasInit, bool HasVar)
1081 SwitchStmt *SwitchStmt::Create(const ASTContext &Ctx, Stmt *Init, VarDecl *Var,
1088 alignof(SwitchStmt));
1089 return new (Mem) SwitchStmt(Ctx, Init, Var, Cond, LParenLoc, RParenLoc);
1092 SwitchStmt *SwitchStmt::CreateEmpty(const ASTContext &Ctx, bool HasInit,
1096 alignof(SwitchStmt));
1097 return new (Mem) SwitchStmt(EmptyShell(), HasInit, HasVar);
1100 VarDecl *SwitchStmt::getConditionVariable() {
1107 void SwitchStmt::setConditionVariable(const ASTContext &Ctx, VarDecl *V) {