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

/external/clang/include/clang/AST/
H A DStmtCXX.h24 /// CXXCatchStmt - This represents a C++ catch block.
26 class CXXCatchStmt : public Stmt { class in namespace:clang
34 CXXCatchStmt(SourceLocation catchLoc, VarDecl *exDecl, Stmt *handlerBlock) function in class:clang::CXXCatchStmt
38 CXXCatchStmt(EmptyShell Empty) function in class:clang::CXXCatchStmt
53 static bool classof(const CXXCatchStmt *) { return true; }
104 CXXCatchStmt *getHandler(unsigned i) {
105 return llvm::cast<CXXCatchStmt>(getStmts()[i + 1]);
107 const CXXCatchStmt *getHandler(unsigned i) const {
108 return llvm::cast<CXXCatchStmt>(getStmts()[i + 1]);

Completed in 246 milliseconds