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

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

Completed in 76 milliseconds