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

/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DStmtObjC.cpp35 NumCatchStmts(NumCatchStmts), HasFinally(atFinallyStmt != nullptr) {
41 if (HasFinally)
59 bool HasFinally) {
61 sizeof(ObjCAtTryStmt) + (1 + NumCatchStmts + HasFinally) * sizeof(Stmt *);
63 return new (Mem) ObjCAtTryStmt(EmptyShell(), NumCatchStmts, HasFinally);
67 if (HasFinally)
57 CreateEmpty(const ASTContext &Context, unsigned NumCatchStmts, bool HasFinally) argument
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmtObjC.h174 bool HasFinally : 1;
191 bool HasFinally)
193 HasFinally(HasFinally) { }
201 unsigned NumCatchStmts, bool HasFinally);
236 if (!HasFinally)
242 if (!HasFinally)
248 assert(HasFinally && "@try does not have a @finally slot!");
261 getStmts() + 1 + NumCatchStmts + HasFinally);
190 ObjCAtTryStmt(EmptyShell Empty, unsigned NumCatchStmts, bool HasFinally) argument
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1479 bool HasFinally = Record.readInt(); local
1484 if (HasFinally)
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp4712 bool HasFinally = (AtTryStmt->getFinallyStmt() != nullptr); local
4716 if (HasFinally) {
4744 CGF.Builder.CreateStore(CGF.Builder.getInt1(HasFinally), CallTryExitVar);
4848 if (HasFinally) {

Completed in 174 milliseconds