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

/external/clang/include/clang/AST/
H A DStmtObjC.h165 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);
181 ObjCAtTryStmt(EmptyShell Empty, unsigned NumCatchStmts, bool HasFinally) argument
/external/clang/lib/AST/
H A DStmt.cpp568 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)
592 CreateEmpty(ASTContext &Context, unsigned NumCatchStmts, bool HasFinally) argument
/external/clang/lib/CodeGen/
H A DCGObjCMac.cpp3244 bool HasFinally = (AtTryStmt->getFinallyStmt() != 0); local
3248 if (HasFinally) {
3276 CGF.Builder.CreateStore(CGF.Builder.getInt1(HasFinally), CallTryExitVar);
3380 if (HasFinally) {
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp1003 bool HasFinally = Record[Idx++]; local
1008 if (HasFinally)

Completed in 37 milliseconds