Searched defs:NumCatchStmts (Results 1 - 3 of 3) sorted by relevance

/external/clang/include/clang/AST/
H A DStmtObjC.h159 unsigned NumCatchStmts : 16;
175 Stmt **CatchStmts, unsigned NumCatchStmts,
178 explicit ObjCAtTryStmt(EmptyShell Empty, unsigned NumCatchStmts, argument
180 : Stmt(ObjCAtTryStmtClass, Empty), NumCatchStmts(NumCatchStmts),
186 Stmt **CatchStmts, unsigned NumCatchStmts,
189 unsigned NumCatchStmts, bool HasFinally);
202 unsigned getNumCatchStmts() const { return NumCatchStmts; }
206 assert(I < NumCatchStmts && "Out-of-bounds @catch index");
212 assert(I < NumCatchStmts
[all...]
/external/clang/lib/AST/
H A DStmt.cpp719 Stmt **CatchStmts, unsigned NumCatchStmts,
722 NumCatchStmts(NumCatchStmts), HasFinally(atFinallyStmt != nullptr) {
725 for (unsigned I = 0; I != NumCatchStmts; ++I)
729 Stmts[NumCatchStmts + 1] = atFinallyStmt;
736 unsigned NumCatchStmts,
739 (1 + NumCatchStmts + (atFinallyStmt != nullptr)) * sizeof(Stmt *);
741 return new (Mem) ObjCAtTryStmt(atTryLoc, atTryStmt, CatchStmts, NumCatchStmts,
746 unsigned NumCatchStmts,
749 (1 + NumCatchStmts
718 ObjCAtTryStmt(SourceLocation atTryLoc, Stmt *atTryStmt, Stmt **CatchStmts, unsigned NumCatchStmts, Stmt *atFinallyStmt) argument
732 Create(const ASTContext &Context, SourceLocation atTryLoc, Stmt *atTryStmt, Stmt **CatchStmts, unsigned NumCatchStmts, Stmt *atFinallyStmt) argument
745 CreateEmpty(const ASTContext &Context, unsigned NumCatchStmts, bool HasFinally) argument
[all...]
/external/clang/lib/Sema/
H A DSemaStmt.cpp3056 unsigned NumCatchStmts = CatchStmts.size(); local
3058 NumCatchStmts, Finally);

Completed in 105 milliseconds