| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | ScopeInfo.h | 447 void setHasCXXTry(SourceLocation TryLoc) { in setHasCXXTry() argument 449 FirstCXXTryLoc = TryLoc; in setHasCXXTry() 452 void setHasSEHTry(SourceLocation TryLoc) { in setHasSEHTry() argument 454 FirstSEHTryLoc = TryLoc; in setHasSEHTry()
|
| H A D | Sema.h | 4872 StmtResult ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock, 4876 SourceLocation TryLoc, Stmt *TryBlock,
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 499 SourceLocation TryLoc = ConsumeToken(); in ParseSEHTryBlock() local 526 TryLoc, in ParseSEHTryBlock() 2295 SourceLocation TryLoc = ConsumeToken(); in ParseFunctionTryBlock() local 2297 PrettyDeclStackTraceEntry CrashInfo(Actions.Context, Decl, TryLoc, in ParseFunctionTryBlock() 2313 StmtResult FnBody(ParseCXXTryBlockCommon(TryLoc, /*FnTry*/true)); in ParseFunctionTryBlock() 2373 SourceLocation TryLoc = ConsumeToken(); in ParseCXXTryBlock() local 2374 return ParseCXXTryBlockCommon(TryLoc); in ParseCXXTryBlock() 2393 StmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry) { in ParseCXXTryBlockCommon() argument 2423 TryLoc, in ParseCXXTryBlockCommon() 2446 return Actions.ActOnCXXTryBlock(TryLoc, TryBlock.get(), Handlers); in ParseCXXTryBlockCommon()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtCXX.h | 74 SourceLocation TryLoc; variable 94 SourceLocation getTryLoc() const { return TryLoc; } in getTryLoc()
|
| H A D | Stmt.h | 3384 SourceLocation TryLoc; variable 3390 SourceLocation TryLoc, 3398 SourceLocation TryLoc, Stmt *TryBlock, 3403 SourceLocation getTryLoc() const { return TryLoc; } in getTryLoc()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | StmtCXX.cpp | 41 : Stmt(CXXTryStmtClass), TryLoc(tryLoc), NumHandlers(handlers.size()) { in CXXTryStmt()
|
| H A D | Stmt.cpp | 1231 SEHTryStmt::SEHTryStmt(bool IsCXXTry, SourceLocation TryLoc, Stmt *TryBlock, in SEHTryStmt() argument 1233 : Stmt(SEHTryStmtClass), IsCXXTry(IsCXXTry), TryLoc(TryLoc) { in SEHTryStmt() 1239 SourceLocation TryLoc, Stmt *TryBlock, in Create() argument 1241 return new(C) SEHTryStmt(IsCXXTry,TryLoc,TryBlock,Handler); in Create()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 4381 targetDiag(TryLoc, diag::err_exceptions_disabled) << "try"; in ActOnCXXTryBlock() 4386 CUDADiagIfDeviceCode(TryLoc, diag::err_cuda_device_exceptions) in ActOnCXXTryBlock() 4390 Diag(TryLoc, diag::err_omp_simd_region_cannot_use_stmt) << "try"; in ActOnCXXTryBlock() 4396 Diag(TryLoc, diag::err_mixing_cxx_try_seh_try); in ActOnCXXTryBlock() 4466 FSI->setHasCXXTry(TryLoc); in ActOnCXXTryBlock() 4468 return CXXTryStmt::Create(Context, TryLoc, TryBlock, Handlers); in ActOnCXXTryBlock() 4471 StmtResult Sema::ActOnSEHTryBlock(bool IsCXXTry, SourceLocation TryLoc, in ActOnSEHTryBlock() argument 4481 Diag(TryLoc, diag::err_mixing_cxx_try_seh_try); in ActOnSEHTryBlock() 4486 FSI->setHasSEHTry(TryLoc); in ActOnSEHTryBlock() 4497 Diag(TryLoc, diag::err_seh_try_outside_functions); in ActOnSEHTryBlock() [all …]
|
| H A D | TreeTransform.h | 2336 StmtResult RebuildCXXTryStmt(SourceLocation TryLoc, Stmt *TryBlock, in RebuildCXXTryStmt() argument 2338 return getSema().ActOnCXXTryBlock(TryLoc, TryBlock, Handlers); in RebuildCXXTryStmt() 2402 StmtResult RebuildSEHTryStmt(bool IsCXXTry, SourceLocation TryLoc, in RebuildSEHTryStmt() argument 2404 return getSema().ActOnSEHTryBlock(IsCXXTry, TryLoc, TryBlock, Handler); in RebuildSEHTryStmt()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1656 S->TryLoc = readSourceLocation(); in VisitCXXTryStmt() 2259 S->TryLoc = readSourceLocation(); in VisitSEHTryStmt()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Parse/ |
| H A D | Parser.h | 2145 StmtResult ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry = false);
|