OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CXXTryStmt
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/AST/
StmtCXX.cpp
25
CXXTryStmt
*
CXXTryStmt
::Create(const ASTContext &C, SourceLocation tryLoc,
28
void *Mem = C.Allocate(Size, alignof(
CXXTryStmt
));
29
return new (Mem)
CXXTryStmt
(tryLoc, tryBlock, handlers);
32
CXXTryStmt
*
CXXTryStmt
::Create(const ASTContext &C, EmptyShell Empty,
35
void *Mem = C.Allocate(Size, alignof(
CXXTryStmt
));
36
return new (Mem)
CXXTryStmt
(Empty, numHandlers);
39
CXXTryStmt
::
CXXTryStmt
(SourceLocation tryLoc, Stmt *tryBlock
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/AST/
StmtCXX.h
66
///
CXXTryStmt
- A C++ try block, including all handlers.
68
class
CXXTryStmt
final : public Stmt,
69
private llvm::TrailingObjects<
CXXTryStmt
, Stmt *> {
78
CXXTryStmt
(SourceLocation tryLoc, Stmt *tryBlock, ArrayRef<Stmt*> handlers);
79
CXXTryStmt
(EmptyShell Empty, unsigned numHandlers)
86
static
CXXTryStmt
*Create(const ASTContext &C, SourceLocation tryLoc,
89
static
CXXTryStmt
*Create(const ASTContext &C, EmptyShell Empty,
Completed in 27 milliseconds
Indexes created Mon Jun 08 00:24:58 UTC 2026