HomeSort by relevance Sort by last modified time
    Searched defs:CXXTryStmt (Results 1 - 2 of 2) sorted by null

  /external/clang/include/clang/AST/
StmtCXX.h 60 /// CXXTryStmt - A C++ try block, including all handlers.
62 class CXXTryStmt : public Stmt {
66 CXXTryStmt(SourceLocation tryLoc, Stmt *tryBlock, Stmt **handlers,
69 CXXTryStmt(EmptyShell Empty, unsigned numHandlers)
80 static CXXTryStmt *Create(ASTContext &C, SourceLocation tryLoc,
84 static CXXTryStmt *Create(ASTContext &C, EmptyShell Empty,
114 static bool classof(const CXXTryStmt *) { return true; }
  /external/clang/lib/AST/
Stmt.cpp 783 CXXTryStmt *CXXTryStmt::Create(ASTContext &C, SourceLocation tryLoc,
786 std::size_t Size = sizeof(CXXTryStmt);
789 void *Mem = C.Allocate(Size, llvm::alignOf<CXXTryStmt>());
790 return new (Mem) CXXTryStmt(tryLoc, tryBlock, handlers, numHandlers);
793 CXXTryStmt *CXXTryStmt::Create(ASTContext &C, EmptyShell Empty,
795 std::size_t Size = sizeof(CXXTryStmt);
798 void *Mem = C.Allocate(Size, llvm::alignOf<CXXTryStmt>());
799 return new (Mem) CXXTryStmt(Empty, numHandlers)
    [all...]

Completed in 167 milliseconds