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

/external/clang/lib/AST/
H A DStmtObjC.cpp33 Stmt **CatchStmts, unsigned NumCatchStmts,
36 NumCatchStmts(NumCatchStmts), HasFinally(atFinallyStmt != nullptr) {
39 for (unsigned I = 0; I != NumCatchStmts; ++I)
43 Stmts[NumCatchStmts + 1] = atFinallyStmt;
48 Stmt **CatchStmts, unsigned NumCatchStmts,
52 (1 + NumCatchStmts + (atFinallyStmt != nullptr)) * sizeof(Stmt *);
54 return new (Mem) ObjCAtTryStmt(atTryLoc, atTryStmt, CatchStmts, NumCatchStmts,
59 unsigned NumCatchStmts,
62 sizeof(ObjCAtTryStmt) + (1 + NumCatchStmts
32 ObjCAtTryStmt(SourceLocation atTryLoc, Stmt *atTryStmt, Stmt **CatchStmts, unsigned NumCatchStmts, Stmt *atFinallyStmt) argument
46 Create(const ASTContext &Context, SourceLocation atTryLoc, Stmt *atTryStmt, Stmt **CatchStmts, unsigned NumCatchStmts, Stmt *atFinallyStmt) argument
58 CreateEmpty(const ASTContext &Context, unsigned NumCatchStmts, bool HasFinally) argument
[all...]
/external/clang/include/clang/AST/
H A DStmtObjC.h160 unsigned NumCatchStmts : 16;
176 Stmt **CatchStmts, unsigned NumCatchStmts,
179 explicit ObjCAtTryStmt(EmptyShell Empty, unsigned NumCatchStmts, argument
181 : Stmt(ObjCAtTryStmtClass, Empty), NumCatchStmts(NumCatchStmts),
187 Stmt **CatchStmts, unsigned NumCatchStmts,
190 unsigned NumCatchStmts, bool HasFinally);
203 unsigned getNumCatchStmts() const { return NumCatchStmts; }
207 assert(I < NumCatchStmts && "Out-of-bounds @catch index");
213 assert(I < NumCatchStmts
[all...]
/external/clang/lib/Sema/
H A DSemaStmt.cpp3428 unsigned NumCatchStmts = CatchStmts.size(); local
3430 NumCatchStmts, Finally);

Completed in 127 milliseconds