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

/external/clang/include/clang/AST/
H A DStmt.h639 // SwitchCase is the base class for CaseStmt and DefaultStmt,
642 // A pointer to the following CaseStmt or DefaultStmt class,
681 class CaseStmt : public SwitchCase { class in namespace:clang
687 CaseStmt(Expr *lhs, Expr *rhs, SourceLocation caseLoc, function in class:clang::CaseStmt
697 explicit CaseStmt(EmptyShell Empty) : SwitchCase(CaseStmtClass, Empty) { } function in class:clang::CaseStmt
725 const CaseStmt *CS = this;
726 while (const CaseStmt *CS2 = dyn_cast<CaseStmt>(CS->getSubStmt()))
773 if (const CaseStmt *CS = dyn_cast<CaseStmt>(thi
[all...]

Completed in 43 milliseconds