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

  /external/clang/lib/AST/
StmtObjC.cpp 33 Stmt **CatchStmts, unsigned NumCatchStmts,
36 NumCatchStmts(NumCatchStmts), HasFinally(atFinallyStmt != nullptr) {
39 for (unsigned I = 0; I != NumCatchStmts; ++I)
43 Stmts[NumCatchStmts + 1] = atFinallyStmt;
48 Stmt **CatchStmts, unsigned NumCatchStmts,
52 (1 + NumCatchStmts + (atFinallyStmt != nullptr)) * sizeof(Stmt *);
54 return new (Mem) ObjCAtTryStmt(atTryLoc, atTryStmt, CatchStmts, NumCatchStmts,
59 unsigned NumCatchStmts,
62 sizeof(ObjCAtTryStmt) + (1 + NumCatchStmts + HasFinally) * sizeof(Stmt *)
    [all...]
  /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/Sema/
SemaStmt.cpp     [all...]

Completed in 531 milliseconds