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

/external/clang/lib/AST/
H A DStmtCXX.cpp36 unsigned numHandlers) {
38 Size += ((numHandlers + 1) * sizeof(Stmt *));
41 return new (Mem) CXXTryStmt(Empty, numHandlers);
35 Create(const ASTContext &C, EmptyShell Empty, unsigned numHandlers) argument
/external/clang/include/clang/AST/
H A DStmtCXX.h71 CXXTryStmt(EmptyShell Empty, unsigned numHandlers) argument
72 : Stmt(CXXTryStmtClass), NumHandlers(numHandlers) { }
86 unsigned numHandlers);
/external/clang/lib/CodeGen/
H A DCGCleanup.h187 EHCatchScope(unsigned numHandlers, argument
190 CatchBits.NumHandlers = numHandlers;
H A DCGCleanup.cpp235 EHCatchScope *EHScopeStack::pushCatch(unsigned numHandlers) { argument
236 char *buffer = allocate(EHCatchScope::getSizeForNumHandlers(numHandlers));
238 new (buffer) EHCatchScope(numHandlers, InnermostEHScope);

Completed in 168 milliseconds