| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | ScopeInfo.h | 465 void setHasCXXTry(SourceLocation TryLoc) { in setHasCXXTry() argument 467 FirstCXXOrObjCTryLoc = TryLoc; in setHasCXXTry() 471 void setHasObjCTry(SourceLocation TryLoc) { in setHasObjCTry() argument 473 FirstCXXOrObjCTryLoc = TryLoc; in setHasObjCTry() 477 void setHasSEHTry(SourceLocation TryLoc) { in setHasSEHTry() argument 479 FirstSEHTryLoc = TryLoc; in setHasSEHTry()
|
| H A D | Sema.h | 11114 StmtResult ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock, 11120 SourceLocation TryLoc, Stmt *TryBlock,
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 560 SourceLocation TryLoc = ConsumeToken(); in ParseSEHTryBlock() local 587 TryLoc, in ParseSEHTryBlock() 2407 SourceLocation TryLoc = ConsumeToken(); in ParseFunctionTryBlock() local 2409 PrettyDeclStackTraceEntry CrashInfo(Actions.Context, Decl, TryLoc, in ParseFunctionTryBlock() 2425 StmtResult FnBody(ParseCXXTryBlockCommon(TryLoc, /*FnTry*/true)); in ParseFunctionTryBlock() 2480 SourceLocation TryLoc = ConsumeToken(); in ParseCXXTryBlock() local 2481 return ParseCXXTryBlockCommon(TryLoc); in ParseCXXTryBlock() 2484 StmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry) { in ParseCXXTryBlockCommon() argument 2514 TryLoc, in ParseCXXTryBlockCommon() 2537 return Actions.ActOnCXXTryBlock(TryLoc, TryBlock.get(), Handlers); in ParseCXXTryBlockCommon()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtCXX.h | 74 SourceLocation TryLoc; variable 95 SourceLocation getTryLoc() const { return TryLoc; } in getTryLoc()
|
| H A D | Stmt.h | 3768 SourceLocation TryLoc; 3774 SourceLocation TryLoc, 3782 SourceLocation TryLoc, Stmt *TryBlock, 3787 SourceLocation getTryLoc() const { return TryLoc; }
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | StmtCXX.cpp | 42 : Stmt(CXXTryStmtClass), TryLoc(tryLoc), NumHandlers(handlers.size()) { in CXXTryStmt()
|
| H A D | Stmt.cpp | 1284 SEHTryStmt::SEHTryStmt(bool IsCXXTry, SourceLocation TryLoc, Stmt *TryBlock, in SEHTryStmt() argument 1286 : Stmt(SEHTryStmtClass), IsCXXTry(IsCXXTry), TryLoc(TryLoc) { in SEHTryStmt() 1292 SourceLocation TryLoc, Stmt *TryBlock, in Create() argument 1294 return new(C) SEHTryStmt(IsCXXTry,TryLoc,TryBlock,Handler); in Create()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 4306 StmtResult Sema::ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock, in ActOnCXXTryBlock() argument 4312 DiagnoseExceptionUse(TryLoc, /* IsTry= */ true); in ActOnCXXTryBlock() 4317 targetDiag(TryLoc, diag::warn_try_not_valid_on_target) << T.str(); in ActOnCXXTryBlock() 4321 CUDA().DiagIfDeviceCode(TryLoc, diag::err_cuda_device_exceptions) in ActOnCXXTryBlock() 4325 Diag(TryLoc, diag::err_omp_simd_region_cannot_use_stmt) << "try"; in ActOnCXXTryBlock() 4331 Diag(TryLoc, diag::err_mixing_cxx_try_seh_try) << 0; in ActOnCXXTryBlock() 4408 FSI->setHasCXXTry(TryLoc); in ActOnCXXTryBlock() 4410 return CXXTryStmt::Create(Context, TryLoc, cast<CompoundStmt>(TryBlock), in ActOnCXXTryBlock() 4431 StmtResult Sema::ActOnSEHTryBlock(bool IsCXXTry, SourceLocation TryLoc, in ActOnSEHTryBlock() argument 4441 Diag(TryLoc, diag::err_mixing_cxx_try_seh_try) << FSI->FirstTryType; in ActOnSEHTryBlock() [all …]
|
| H A D | TreeTransform.h | 2598 StmtResult RebuildCXXTryStmt(SourceLocation TryLoc, Stmt *TryBlock, in RebuildCXXTryStmt() argument 2600 return getSema().ActOnCXXTryBlock(TryLoc, TryBlock, Handlers); in RebuildCXXTryStmt() 2663 StmtResult RebuildSEHTryStmt(bool IsCXXTry, SourceLocation TryLoc, in RebuildSEHTryStmt() argument 2665 return getSema().ActOnSEHTryBlock(IsCXXTry, TryLoc, TryBlock, Handler); in RebuildSEHTryStmt()
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1702 S->TryLoc = readSourceLocation(); in VisitCXXTryStmt() 2375 S->TryLoc = readSourceLocation(); in VisitSEHTryStmt()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Parse/ |
| H A D | Parser.h | 7523 StmtResult ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry = false);
|