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

/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtCXX.h71 CXXTryStmt(EmptyShell Empty, unsigned numHandlers) argument
72 : Stmt(CXXTryStmtClass), NumHandlers(numHandlers) { }
86 unsigned numHandlers);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGCleanup.h172 EHCatchScope(unsigned numHandlers, argument
175 CatchBits.NumHandlers = numHandlers;
H A DCGCleanup.cpp219 EHCatchScope *EHScopeStack::pushCatch(unsigned numHandlers) { argument
220 char *buffer = allocate(EHCatchScope::getSizeForNumHandlers(numHandlers));
222 new (buffer) EHCatchScope(numHandlers, InnermostEHScope);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DStmt.cpp774 unsigned numHandlers) {
776 Size += ((numHandlers + 1) * sizeof(Stmt));
779 return new (Mem) CXXTryStmt(Empty, numHandlers);
773 Create(const ASTContext &C, EmptyShell Empty, unsigned numHandlers) argument

Completed in 112 milliseconds