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,
203 unsigned getNumCatchStmts() const { return NumCatchStmts; }
207 assert(I < NumCatchStmts && "Out-of-bounds @catch index");
213 assert(I < NumCatchStmts
[all...]
/external/clang/lib/AST/
H A DStmt.cpp720 Stmt **CatchStmts, unsigned NumCatchStmts,
723 NumCatchStmts(NumCatchStmts), HasFinally(atFinallyStmt != 0)
727 for (unsigned I = 0; I != NumCatchStmts; ++I)
731 Stmts[NumCatchStmts + 1] = atFinallyStmt;
738 unsigned NumCatchStmts,
741 (1 + NumCatchStmts + (atFinallyStmt != 0)) * sizeof(Stmt *);
743 return new (Mem) ObjCAtTryStmt(atTryLoc, atTryStmt, CatchStmts, NumCatchStmts,
748 unsigned NumCatchStmts,
751 (1 + NumCatchStmts
719 ObjCAtTryStmt(SourceLocation atTryLoc, Stmt *atTryStmt, Stmt **CatchStmts, unsigned NumCatchStmts, Stmt *atFinallyStmt) argument
734 Create(ASTContext &Context, SourceLocation atTryLoc, Stmt *atTryStmt, Stmt **CatchStmts, unsigned NumCatchStmts, Stmt *atFinallyStmt) argument
747 CreateEmpty(ASTContext &Context, unsigned NumCatchStmts, bool HasFinally) argument
[all...]
/external/clang/lib/Sema/
H A DSemaStmt.cpp2874 unsigned NumCatchStmts = CatchStmts.size(); local
2877 NumCatchStmts,

Completed in 171 milliseconds