OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CXXTryStmt
(Results
1 - 2
of
2
) sorted by null
/external/clang/include/clang/AST/
StmtCXX.h
59
///
CXXTryStmt
- A C++ try block, including all handlers.
61
class
CXXTryStmt
: public Stmt {
65
CXXTryStmt
(SourceLocation tryLoc, Stmt *tryBlock, Stmt **handlers,
68
CXXTryStmt
(EmptyShell Empty, unsigned numHandlers)
79
static
CXXTryStmt
*Create(ASTContext &C, SourceLocation tryLoc,
83
static
CXXTryStmt
*Create(ASTContext &C, EmptyShell Empty,
113
static bool classof(const
CXXTryStmt
*) { return true; }
/external/clang/lib/AST/
Stmt.cpp
533
CXXTryStmt
*
CXXTryStmt
::Create(ASTContext &C, SourceLocation tryLoc,
536
std::size_t Size = sizeof(
CXXTryStmt
);
539
void *Mem = C.Allocate(Size, llvm::alignOf<
CXXTryStmt
>());
540
return new (Mem)
CXXTryStmt
(tryLoc, tryBlock, handlers, numHandlers);
543
CXXTryStmt
*
CXXTryStmt
::Create(ASTContext &C, EmptyShell Empty,
545
std::size_t Size = sizeof(
CXXTryStmt
);
548
void *Mem = C.Allocate(Size, llvm::alignOf<
CXXTryStmt
>());
549
return new (Mem)
CXXTryStmt
(Empty, numHandlers)
[
all
...]
Completed in 15 milliseconds