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

  /external/clang/lib/AST/
StmtObjC.cpp 36 NumCatchStmts(NumCatchStmts), HasFinally(atFinallyStmt != nullptr) {
42 if (HasFinally)
60 bool HasFinally) {
62 sizeof(ObjCAtTryStmt) + (1 + NumCatchStmts + HasFinally) * sizeof(Stmt *);
64 return new (Mem) ObjCAtTryStmt(EmptyShell(), NumCatchStmts, HasFinally);
68 if (HasFinally)
  /external/clang/include/clang/AST/
StmtObjC.h 163 bool HasFinally : 1;
180 bool HasFinally)
182 HasFinally(HasFinally) { }
190 unsigned NumCatchStmts, bool HasFinally);
225 if (!HasFinally)
231 if (!HasFinally)
237 assert(HasFinally && "@try does not have a @finally slot!");
250 getStmts() + 1 + NumCatchStmts + HasFinally);
  /external/clang/lib/CodeGen/
CGObjCMac.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp     [all...]

Completed in 566 milliseconds