Searched refs:numHandlers (Results 1 – 4 of 4) sorted by relevance
33 unsigned numHandlers) { in Create() argument34 const size_t Size = totalSizeToAlloc<Stmt *>(numHandlers + 1); in Create()36 return new (Mem) CXXTryStmt(Empty, numHandlers); in Create()
180 EHCatchScope(unsigned numHandlers, in EHCatchScope() argument183 CatchBits.NumHandlers = numHandlers; in EHCatchScope()184 assert(CatchBits.NumHandlers == numHandlers && "NumHandlers overflow?"); in EHCatchScope()
259 EHCatchScope *EHScopeStack::pushCatch(unsigned numHandlers) { in pushCatch() argument260 char *buffer = allocate(EHCatchScope::getSizeForNumHandlers(numHandlers)); in pushCatch()262 new (buffer) EHCatchScope(numHandlers, InnermostEHScope); in pushCatch()
79 CXXTryStmt(EmptyShell Empty, unsigned numHandlers) in CXXTryStmt() argument80 : Stmt(CXXTryStmtClass), NumHandlers(numHandlers) { } in CXXTryStmt()90 unsigned numHandlers);