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

/external/clang/include/clang/AST/
H A DStmtCXX.h27 /// CXXCatchStmt - This represents a C++ catch block.
29 class CXXCatchStmt : public Stmt { class in namespace:clang
37 CXXCatchStmt(SourceLocation catchLoc, VarDecl *exDecl, Stmt *handlerBlock) function in class:clang::CXXCatchStmt
41 CXXCatchStmt(EmptyShell Empty) function in class:clang::CXXCatchStmt
104 CXXCatchStmt *getHandler(unsigned i) {
105 return cast<CXXCatchStmt>(getStmts()[i + 1]);
107 const CXXCatchStmt *getHandler(unsigned i) const {
108 return cast<CXXCatchStmt>(getStmts()[i + 1]);

Completed in 296 milliseconds