| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/ |
| H A D | ScopeInfo.h | 420 void setHasCXXTry(SourceLocation TryLoc) { in setHasCXXTry() argument 422 FirstCXXTryLoc = TryLoc; in setHasCXXTry() 425 void setHasSEHTry(SourceLocation TryLoc) { in setHasSEHTry() argument 427 FirstSEHTryLoc = TryLoc; in setHasSEHTry()
|
| H A D | Sema.h | 3929 StmtResult ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock, 3933 SourceLocation TryLoc, Stmt *TryBlock,
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 456 SourceLocation TryLoc = ConsumeToken(); in ParseSEHTryBlock() local 483 TryLoc, in ParseSEHTryBlock() 2048 SourceLocation TryLoc = ConsumeToken(); in ParseFunctionTryBlock() local 2050 PrettyDeclStackTraceEntry CrashInfo(Actions.Context, Decl, TryLoc, in ParseFunctionTryBlock() 2066 StmtResult FnBody(ParseCXXTryBlockCommon(TryLoc, /*FnTry*/true)); in ParseFunctionTryBlock() 2126 SourceLocation TryLoc = ConsumeToken(); in ParseCXXTryBlock() local 2127 return ParseCXXTryBlockCommon(TryLoc); in ParseCXXTryBlock() 2146 StmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry) { in ParseCXXTryBlockCommon() argument 2176 TryLoc, in ParseCXXTryBlockCommon() 2199 return Actions.ActOnCXXTryBlock(TryLoc, TryBlock.get(), Handlers); in ParseCXXTryBlockCommon()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | Stmt.cpp | 1100 SEHTryStmt::SEHTryStmt(bool IsCXXTry, SourceLocation TryLoc, Stmt *TryBlock, in SEHTryStmt() argument 1102 : Stmt(SEHTryStmtClass), IsCXXTry(IsCXXTry), TryLoc(TryLoc) { in SEHTryStmt() 1108 SourceLocation TryLoc, Stmt *TryBlock, in Create() argument 1110 return new(C) SEHTryStmt(IsCXXTry,TryLoc,TryBlock,Handler); in Create()
|
| H A D | StmtCXX.cpp | 42 : Stmt(CXXTryStmtClass), TryLoc(tryLoc), NumHandlers(handlers.size()) { in CXXTryStmt()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | StmtCXX.h | 71 SourceLocation TryLoc; variable 91 SourceLocation getTryLoc() const { return TryLoc; } in getTryLoc()
|
| H A D | Stmt.h | 3026 SourceLocation TryLoc; variable 3032 SourceLocation TryLoc, 3040 SourceLocation TryLoc, Stmt *TryBlock, 3045 SourceLocation getTryLoc() const { return TryLoc; } in getTryLoc()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 4014 !getSourceManager().isInSystemHeader(TryLoc) && in ActOnCXXTryBlock() 4019 Diag(TryLoc, diag::err_exceptions_disabled) << "try"; in ActOnCXXTryBlock() 4023 CUDADiagIfDeviceCode(TryLoc, diag::err_cuda_device_exceptions) in ActOnCXXTryBlock() 4027 Diag(TryLoc, diag::err_omp_simd_region_cannot_use_stmt) << "try"; in ActOnCXXTryBlock() 4033 Diag(TryLoc, diag::err_mixing_cxx_try_seh_try); in ActOnCXXTryBlock() 4103 FSI->setHasCXXTry(TryLoc); in ActOnCXXTryBlock() 4105 return CXXTryStmt::Create(Context, TryLoc, TryBlock, Handlers); in ActOnCXXTryBlock() 4118 Diag(TryLoc, diag::err_mixing_cxx_try_seh_try); in ActOnSEHTryBlock() 4123 FSI->setHasSEHTry(TryLoc); in ActOnSEHTryBlock() 4134 Diag(TryLoc, diag::err_seh_try_outside_functions); in ActOnSEHTryBlock() [all …]
|
| H A D | TreeTransform.h | 2014 StmtResult RebuildCXXTryStmt(SourceLocation TryLoc, Stmt *TryBlock, in RebuildCXXTryStmt() argument 2016 return getSema().ActOnCXXTryBlock(TryLoc, TryBlock, Handlers); in RebuildCXXTryStmt() 2080 StmtResult RebuildSEHTryStmt(bool IsCXXTry, SourceLocation TryLoc, in RebuildSEHTryStmt() argument 2082 return getSema().ActOnSEHTryBlock(IsCXXTry, TryLoc, TryBlock, Handler); in RebuildSEHTryStmt()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1316 S->TryLoc = ReadSourceLocation(); in VisitCXXTryStmt() 1881 S->TryLoc = ReadSourceLocation(); in VisitSEHTryStmt()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Parse/ |
| H A D | Parser.h | 1962 StmtResult ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry = false);
|