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

/external/clang/include/clang/AST/
H A DStmt.h630 // SwitchCase is the base class for CaseStmt and DefaultStmt,
633 // A pointer to the following CaseStmt or DefaultStmt class,
660 class CaseStmt : public SwitchCase { class in namespace:clang
668 CaseStmt(Expr *lhs, Expr *rhs, SourceLocation caseLoc, function in class:clang::CaseStmt
680 explicit CaseStmt(EmptyShell Empty) : SwitchCase(CaseStmtClass) { } function in class:clang::CaseStmt
708 const CaseStmt *CS = this;
709 while (const CaseStmt *CS2 = dyn_cast<CaseStmt>(CS->getSubStmt()))
717 static bool classof(const CaseStmt *) { return true; }

Completed in 1823 milliseconds