HomeSort by: relevance | last modified time | path
    Searched refs:NumCatchStmts (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
StmtObjC.cpp 32 Stmt **CatchStmts, unsigned NumCatchStmts,
35 NumCatchStmts(NumCatchStmts), HasFinally(atFinallyStmt != nullptr) {
38 for (unsigned I = 0; I != NumCatchStmts; ++I)
42 Stmts[NumCatchStmts + 1] = atFinallyStmt;
47 Stmt **CatchStmts, unsigned NumCatchStmts,
51 (1 + NumCatchStmts + (atFinallyStmt != nullptr)) * sizeof(Stmt *);
53 return new (Mem) ObjCAtTryStmt(atTryLoc, atTryStmt, CatchStmts, NumCatchStmts,
58 unsigned NumCatchStmts,
61 sizeof(ObjCAtTryStmt) + (1 + NumCatchStmts + HasFinally) * sizeof(Stmt *)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
StmtObjC.h 171 unsigned NumCatchStmts : 16;
187 Stmt **CatchStmts, unsigned NumCatchStmts,
190 explicit ObjCAtTryStmt(EmptyShell Empty, unsigned NumCatchStmts,
192 : Stmt(ObjCAtTryStmtClass, Empty), NumCatchStmts(NumCatchStmts),
198 Stmt **CatchStmts, unsigned NumCatchStmts,
201 unsigned NumCatchStmts, bool HasFinally);
214 unsigned getNumCatchStmts() const { return NumCatchStmts; }
218 assert(I < NumCatchStmts && "Out-of-bounds @catch index");
224 assert(I < NumCatchStmts && "Out-of-bounds @catch index")
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmt.cpp 4213 unsigned NumCatchStmts = CatchStmts.size();
4215 NumCatchStmts, Finally);

Completed in 49 milliseconds