Searched refs:HasFinally (Results 1 - 4 of 4) sorted by relevance

/external/clang/include/clang/AST/
H A DStmtObjC.h162 bool HasFinally : 1;
179 bool HasFinally)
181 HasFinally(HasFinally) { }
189 unsigned NumCatchStmts, bool HasFinally);
224 if (!HasFinally)
230 if (!HasFinally)
236 assert(HasFinally && "@try does not have a @finally slot!");
249 getStmts() + 1 + NumCatchStmts + HasFinally);
178 ObjCAtTryStmt(EmptyShell Empty, unsigned NumCatchStmts, bool HasFinally) argument
/external/clang/lib/AST/
H A DStmt.cpp722 NumCatchStmts(NumCatchStmts), HasFinally(atFinallyStmt != nullptr) {
728 if (HasFinally)
747 bool HasFinally) {
749 (1 + NumCatchStmts + HasFinally) * sizeof(Stmt *);
751 return new (Mem) ObjCAtTryStmt(EmptyShell(), NumCatchStmts, HasFinally);
755 if (HasFinally)
745 CreateEmpty(const ASTContext &Context, unsigned NumCatchStmts, bool HasFinally) argument
/external/clang/lib/CodeGen/
H A DCGObjCMac.cpp3899 bool HasFinally = (AtTryStmt->getFinallyStmt() != nullptr); local
3903 if (HasFinally) {
3930 CGF.Builder.CreateStore(CGF.Builder.getInt1(HasFinally), CallTryExitVar);
4034 if (HasFinally) {
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp1108 bool HasFinally = Record[Idx++]; local
1113 if (HasFinally)

Completed in 89 milliseconds