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

/external/clang/include/clang/AST/
H A DStmtObjC.h162 unsigned NumCatchStmts : 16;
178 Stmt **CatchStmts, unsigned NumCatchStmts,
181 explicit ObjCAtTryStmt(EmptyShell Empty, unsigned NumCatchStmts, argument
183 : Stmt(ObjCAtTryStmtClass, Empty), NumCatchStmts(NumCatchStmts),
189 Stmt **CatchStmts, unsigned NumCatchStmts,
192 unsigned NumCatchStmts,
206 unsigned getNumCatchStmts() const { return NumCatchStmts; }
210 assert(I < NumCatchStmts && "Out-of-bounds @catch index");
216 assert(I < NumCatchStmts
[all...]
/external/clang/lib/AST/
H A DStmt.cpp565 Stmt **CatchStmts, unsigned NumCatchStmts,
568 NumCatchStmts(NumCatchStmts), HasFinally(atFinallyStmt != 0)
572 for (unsigned I = 0; I != NumCatchStmts; ++I)
576 Stmts[NumCatchStmts + 1] = atFinallyStmt;
583 unsigned NumCatchStmts,
586 (1 + NumCatchStmts + (atFinallyStmt != 0)) * sizeof(Stmt *);
588 return new (Mem) ObjCAtTryStmt(atTryLoc, atTryStmt, CatchStmts, NumCatchStmts,
593 unsigned NumCatchStmts,
596 (1 + NumCatchStmts
564 ObjCAtTryStmt(SourceLocation atTryLoc, Stmt *atTryStmt, Stmt **CatchStmts, unsigned NumCatchStmts, Stmt *atFinallyStmt) argument
579 Create(ASTContext &Context, SourceLocation atTryLoc, Stmt *atTryStmt, Stmt **CatchStmts, unsigned NumCatchStmts, Stmt *atFinallyStmt) argument
592 CreateEmpty(ASTContext &Context, unsigned NumCatchStmts, bool HasFinally) argument
[all...]
/external/clang/lib/Sema/
H A DSemaStmt.cpp2416 unsigned NumCatchStmts = CatchStmts.size(); local
2419 NumCatchStmts,

Completed in 54 milliseconds