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 164 bool HasFinally : 1;
181 bool HasFinally)
183 HasFinally(HasFinally) { }
192 bool HasFinally);
227 if (!HasFinally)
233 if (!HasFinally)
239 assert(HasFinally && "@try does not have a @finally slot!");
252 getStmts() + 1 + NumCatchStmts + HasFinally);
  /external/clang/lib/AST/
Stmt.cpp 504 NumCatchStmts(NumCatchStmts), HasFinally(atFinallyStmt != 0)
511 if (HasFinally)
530 bool HasFinally) {
532 (1 + NumCatchStmts + HasFinally) * sizeof(Stmt *);
534 return new (Mem) ObjCAtTryStmt(EmptyShell(), NumCatchStmts, HasFinally);
539 if (HasFinally)
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 938 bool HasFinally = Record[Idx++];
943 if (HasFinally)
    [all...]
  /external/clang/lib/CodeGen/
CGObjCMac.cpp     [all...]

Completed in 137 milliseconds