| /openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
| H A D | ScopeInfo.h | 455 void setHasCXXTry(SourceLocation TryLoc) { in setHasCXXTry() argument 457 FirstCXXOrObjCTryLoc = TryLoc; in setHasCXXTry() 461 void setHasObjCTry(SourceLocation TryLoc) { in setHasObjCTry() argument 463 FirstCXXOrObjCTryLoc = TryLoc; in setHasObjCTry() 467 void setHasSEHTry(SourceLocation TryLoc) { in setHasSEHTry() argument 469 FirstSEHTryLoc = TryLoc; in setHasSEHTry()
|
| H A D | Sema.h | 5258 StmtResult ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock, 5262 SourceLocation TryLoc, Stmt *TryBlock,
|
| /openbsd-src/gnu/llvm/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 562 SourceLocation TryLoc = ConsumeToken(); in ParseSEHTryBlock() local 589 TryLoc, in ParseSEHTryBlock() 2470 SourceLocation TryLoc = ConsumeToken(); in ParseFunctionTryBlock() local 2472 PrettyDeclStackTraceEntry CrashInfo(Actions.Context, Decl, TryLoc, in ParseFunctionTryBlock() 2488 StmtResult FnBody(ParseCXXTryBlockCommon(TryLoc, /*FnTry*/true)); in ParseFunctionTryBlock() 2549 SourceLocation TryLoc = ConsumeToken(); in ParseCXXTryBlock() local 2550 return ParseCXXTryBlockCommon(TryLoc); in ParseCXXTryBlock() 2569 StmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry) { in ParseCXXTryBlockCommon() argument 2599 TryLoc, in ParseCXXTryBlockCommon() 2622 return Actions.ActOnCXXTryBlock(TryLoc, TryBlock.get(), Handlers); in ParseCXXTryBlockCommon()
|
| /openbsd-src/gnu/llvm/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 | 3457 SourceLocation TryLoc; variable 3463 SourceLocation TryLoc, 3471 SourceLocation TryLoc, Stmt *TryBlock, 3476 SourceLocation getTryLoc() const { return TryLoc; } in getTryLoc()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | StmtCXX.cpp | 41 : Stmt(CXXTryStmtClass), TryLoc(tryLoc), NumHandlers(handlers.size()) { in CXXTryStmt()
|
| H A D | Stmt.cpp | 1238 SEHTryStmt::SEHTryStmt(bool IsCXXTry, SourceLocation TryLoc, Stmt *TryBlock, in SEHTryStmt() argument 1240 : Stmt(SEHTryStmtClass), IsCXXTry(IsCXXTry), TryLoc(TryLoc) { in SEHTryStmt() 1246 SourceLocation TryLoc, Stmt *TryBlock, in Create() argument 1248 return new(C) SEHTryStmt(IsCXXTry,TryLoc,TryBlock,Handler); in Create()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 4439 StmtResult Sema::ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock, in ActOnCXXTryBlock() argument 4443 !getSourceManager().isInSystemHeader(TryLoc) && !getLangOpts().CUDA) { in ActOnCXXTryBlock() 4445 targetDiag(TryLoc, diag::err_exceptions_disabled) << "try"; in ActOnCXXTryBlock() 4450 CUDADiagIfDeviceCode(TryLoc, diag::err_cuda_device_exceptions) in ActOnCXXTryBlock() 4454 Diag(TryLoc, diag::err_omp_simd_region_cannot_use_stmt) << "try"; in ActOnCXXTryBlock() 4460 Diag(TryLoc, diag::err_mixing_cxx_try_seh_try) << 0; in ActOnCXXTryBlock() 4530 FSI->setHasCXXTry(TryLoc); in ActOnCXXTryBlock() 4532 return CXXTryStmt::Create(Context, TryLoc, TryBlock, Handlers); in ActOnCXXTryBlock() 4535 StmtResult Sema::ActOnSEHTryBlock(bool IsCXXTry, SourceLocation TryLoc, in ActOnSEHTryBlock() argument 4545 Diag(TryLoc, diag::err_mixing_cxx_try_seh_try) << FSI->FirstTryType; in ActOnSEHTryBlock() [all …]
|
| H A D | TreeTransform.h | 2480 StmtResult RebuildCXXTryStmt(SourceLocation TryLoc, Stmt *TryBlock, in RebuildCXXTryStmt() argument 2482 return getSema().ActOnCXXTryBlock(TryLoc, TryBlock, Handlers); in RebuildCXXTryStmt() 2546 StmtResult RebuildSEHTryStmt(bool IsCXXTry, SourceLocation TryLoc, in RebuildSEHTryStmt() argument 2548 return getSema().ActOnSEHTryBlock(IsCXXTry, TryLoc, TryBlock, Handler); in RebuildSEHTryStmt()
|
| /openbsd-src/gnu/llvm/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1647 S->TryLoc = readSourceLocation(); in VisitCXXTryStmt() 2284 S->TryLoc = readSourceLocation(); in VisitSEHTryStmt()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Parse/ |
| H A D | Parser.h | 2176 StmtResult ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry = false);
|