Home | History | Annotate | Download | only in AST

Lines Matching refs:SwitchStmt

1038 SwitchStmt::SwitchStmt(const ASTContext &Ctx, Stmt *Init, VarDecl *Var,
1059 SwitchStmt::SwitchStmt(EmptyShell Empty, bool HasInit, bool HasVar)
1066 SwitchStmt *SwitchStmt::Create(const ASTContext &Ctx, Stmt *Init, VarDecl *Var,
1073 alignof(SwitchStmt));
1074 return new (Mem) SwitchStmt(Ctx, Init, Var, Cond, LParenLoc, RParenLoc);
1077 SwitchStmt *SwitchStmt::CreateEmpty(const ASTContext &Ctx, bool HasInit,
1081 alignof(SwitchStmt));
1082 return new (Mem) SwitchStmt(EmptyShell(), HasInit, HasVar);
1085 VarDecl *SwitchStmt::getConditionVariable() {
1092 void SwitchStmt::setConditionVariable(const ASTContext &Ctx, VarDecl *V) {