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 160 unsigned NumCatchStmts : 16;
176 Stmt **CatchStmts, unsigned NumCatchStmts,
179 explicit ObjCAtTryStmt(EmptyShell Empty, unsigned NumCatchStmts,
181 : Stmt(ObjCAtTryStmtClass, Empty), NumCatchStmts(NumCatchStmts),
187 Stmt **CatchStmts, unsigned NumCatchStmts,
190 unsigned NumCatchStmts, bool HasFinally);
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 779 Stmt **CatchStmts, unsigned NumCatchStmts,
782 NumCatchStmts(NumCatchStmts), HasFinally(atFinallyStmt != nullptr) {
785 for (unsigned I = 0; I != NumCatchStmts; ++I)
789 Stmts[NumCatchStmts + 1] = atFinallyStmt;
796 unsigned NumCatchStmts,
799 (1 + NumCatchStmts + (atFinallyStmt != nullptr)) * sizeof(Stmt *);
801 return new (Mem) ObjCAtTryStmt(atTryLoc, atTryStmt, CatchStmts, NumCatchStmts,
806 unsigned NumCatchStmts,
809 (1 + NumCatchStmts + HasFinally) * sizeof(Stmt *)
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]

Completed in 800 milliseconds