Home
last modified time | relevance | path

Searched refs:numHandlers (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtCXX.cpp33 unsigned numHandlers) { in Create() argument
34 const size_t Size = totalSizeToAlloc<Stmt *>(numHandlers + 1); in Create()
36 return new (Mem) CXXTryStmt(Empty, numHandlers); in Create()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmtCXX.h79 CXXTryStmt(EmptyShell Empty, unsigned numHandlers) in CXXTryStmt() argument
80 : Stmt(CXXTryStmtClass), NumHandlers(numHandlers) { } in CXXTryStmt()
90 unsigned numHandlers);
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGCleanup.h181 EHCatchScope(unsigned numHandlers, in EHCatchScope() argument
184 CatchBits.NumHandlers = numHandlers; in EHCatchScope()
185 assert(CatchBits.NumHandlers == numHandlers && "NumHandlers overflow?"); in EHCatchScope()
H A DCGCleanup.cpp247 EHCatchScope *EHScopeStack::pushCatch(unsigned numHandlers) { in pushCatch() argument
248 char *buffer = allocate(EHCatchScope::getSizeForNumHandlers(numHandlers)); in pushCatch()
250 new (buffer) EHCatchScope(numHandlers, InnermostEHScope); in pushCatch()