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 162 unsigned NumCatchStmts : 16;
178 Stmt **CatchStmts, unsigned NumCatchStmts,
181 explicit ObjCAtTryStmt(EmptyShell Empty, unsigned NumCatchStmts,
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 && "Out-of-bounds @catch index")
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 565 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 + HasFinally) * sizeof(Stmt *)
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]

Completed in 21 milliseconds