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, bool HasFinally);
202 unsigned getNumCatchStmts() const { return NumCatchStmts; }
206 assert(I < NumCatchStmts && "Out-of-bounds @catch index");
212 assert(I < NumCatchStmts && "Out-of-bounds @catch index")
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 719 Stmt **CatchStmts, unsigned NumCatchStmts,
722 NumCatchStmts(NumCatchStmts), HasFinally(atFinallyStmt != nullptr) {
725 for (unsigned I = 0; I != NumCatchStmts; ++I)
729 Stmts[NumCatchStmts + 1] = atFinallyStmt;
736 unsigned NumCatchStmts,
739 (1 + NumCatchStmts + (atFinallyStmt != nullptr)) * sizeof(Stmt *);
741 return new (Mem) ObjCAtTryStmt(atTryLoc, atTryStmt, CatchStmts, NumCatchStmts,
746 unsigned NumCatchStmts,
749 (1 + NumCatchStmts + HasFinally) * sizeof(Stmt *)
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp     [all...]

Completed in 70 milliseconds