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

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

Completed in 78 milliseconds