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

  /external/clang/include/clang/AST/
StmtObjC.h 165 bool HasFinally : 1;
182 bool HasFinally)
184 HasFinally(HasFinally) { }
193 bool HasFinally);
228 if (!HasFinally)
234 if (!HasFinally)
240 assert(HasFinally && "@try does not have a @finally slot!");
253 getStmts() + 1 + NumCatchStmts + HasFinally);
  /external/clang/lib/AST/
Stmt.cpp 568 NumCatchStmts(NumCatchStmts), HasFinally(atFinallyStmt != 0)
575 if (HasFinally)
594 bool HasFinally) {
596 (1 + NumCatchStmts + HasFinally) * sizeof(Stmt *);
598 return new (Mem) ObjCAtTryStmt(EmptyShell(), NumCatchStmts, HasFinally);
603 if (HasFinally)
  /external/clang/lib/CodeGen/
CGObjCMac.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp     [all...]

Completed in 33 milliseconds