HomeSort by relevance Sort by last modified time
    Searched refs:NumCatchStmts (Results 1 - 3 of 3) sorted by null

  /external/clang/include/clang/AST/
StmtObjC.h 161 unsigned NumCatchStmts : 16;
177 Stmt **CatchStmts, unsigned NumCatchStmts,
180 explicit ObjCAtTryStmt(EmptyShell Empty, unsigned NumCatchStmts,
182 : Stmt(ObjCAtTryStmtClass, Empty), NumCatchStmts(NumCatchStmts),
188 Stmt **CatchStmts, unsigned NumCatchStmts,
191 unsigned NumCatchStmts,
205 unsigned getNumCatchStmts() const { return NumCatchStmts; }
209 assert(I < NumCatchStmts && "Out-of-bounds @catch index");
215 assert(I < NumCatchStmts && "Out-of-bounds @catch index")
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 501 Stmt **CatchStmts, unsigned NumCatchStmts,
504 NumCatchStmts(NumCatchStmts), HasFinally(atFinallyStmt != 0)
508 for (unsigned I = 0; I != NumCatchStmts; ++I)
512 Stmts[NumCatchStmts + 1] = atFinallyStmt;
519 unsigned NumCatchStmts,
522 (1 + NumCatchStmts + (atFinallyStmt != 0)) * sizeof(Stmt *);
524 return new (Mem) ObjCAtTryStmt(atTryLoc, atTryStmt, CatchStmts, NumCatchStmts,
529 unsigned NumCatchStmts,
532 (1 + NumCatchStmts + HasFinally) * sizeof(Stmt *)
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]

Completed in 43 milliseconds