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 63 /// CXXTryStmt - A C++ try block, including all handlers.
65 class CXXTryStmt : public Stmt {
69 CXXTryStmt(SourceLocation tryLoc, Stmt *tryBlock, ArrayRef<Stmt*> handlers);
71 CXXTryStmt(EmptyShell Empty, unsigned numHandlers)
82 static CXXTryStmt *Create(const ASTContext &C, SourceLocation tryLoc,
85 static CXXTryStmt *Create(const ASTContext &C, EmptyShell Empty,
  /external/clang/lib/AST/
Stmt.cpp 762 CXXTryStmt *CXXTryStmt::Create(const ASTContext &C, SourceLocation tryLoc,
764 std::size_t Size = sizeof(CXXTryStmt);
767 void *Mem = C.Allocate(Size, llvm::alignOf<CXXTryStmt>());
768 return new (Mem) CXXTryStmt(tryLoc, tryBlock, handlers);
771 CXXTryStmt *CXXTryStmt::Create(const ASTContext &C, EmptyShell Empty,
773 std::size_t Size = sizeof(CXXTryStmt);
776 void *Mem = C.Allocate(Size, llvm::alignOf<CXXTryStmt>());
777 return new (Mem) CXXTryStmt(Empty, numHandlers)
    [all...]

Completed in 49 milliseconds