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

Completed in 818 milliseconds