| /netbsd-src/external/apache2/llvm/dist/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 | 4836 StmtResult ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock, 4840 SourceLocation TryLoc, Stmt *TryBlock,
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 494 SourceLocation TryLoc = ConsumeToken(); in ParseSEHTryBlock() local 521 TryLoc, in ParseSEHTryBlock() 2290 SourceLocation TryLoc = ConsumeToken(); in ParseFunctionTryBlock() local 2292 PrettyDeclStackTraceEntry CrashInfo(Actions.Context, Decl, TryLoc, in ParseFunctionTryBlock() 2308 StmtResult FnBody(ParseCXXTryBlockCommon(TryLoc, /*FnTry*/true)); in ParseFunctionTryBlock() 2368 SourceLocation TryLoc = ConsumeToken(); in ParseCXXTryBlock() local 2369 return ParseCXXTryBlockCommon(TryLoc); in ParseCXXTryBlock() 2388 StmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry) { in ParseCXXTryBlockCommon() argument 2418 TryLoc, in ParseCXXTryBlockCommon() 2441 return Actions.ActOnCXXTryBlock(TryLoc, TryBlock.get(), Handlers); in ParseCXXTryBlockCommon()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | Stmt.cpp | 1225 SEHTryStmt::SEHTryStmt(bool IsCXXTry, SourceLocation TryLoc, Stmt *TryBlock, in SEHTryStmt() argument 1227 : Stmt(SEHTryStmtClass), IsCXXTry(IsCXXTry), TryLoc(TryLoc) { in SEHTryStmt() 1233 SourceLocation TryLoc, Stmt *TryBlock, in Create() argument 1235 return new(C) SEHTryStmt(IsCXXTry,TryLoc,TryBlock,Handler); in Create()
|
| H A D | StmtCXX.cpp | 41 : Stmt(CXXTryStmtClass), TryLoc(tryLoc), NumHandlers(handlers.size()) { in CXXTryStmt()
|
| /netbsd-src/external/apache2/llvm/dist/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()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaStmt.cpp | 4427 StmtResult Sema::ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock, in ActOnCXXTryBlock() argument 4431 !getSourceManager().isInSystemHeader(TryLoc) && !getLangOpts().CUDA) { in ActOnCXXTryBlock() 4433 targetDiag(TryLoc, diag::err_exceptions_disabled) << "try"; in ActOnCXXTryBlock() 4438 CUDADiagIfDeviceCode(TryLoc, diag::err_cuda_device_exceptions) in ActOnCXXTryBlock() 4442 Diag(TryLoc, diag::err_omp_simd_region_cannot_use_stmt) << "try"; in ActOnCXXTryBlock() 4448 Diag(TryLoc, diag::err_mixing_cxx_try_seh_try); in ActOnCXXTryBlock() 4518 FSI->setHasCXXTry(TryLoc); in ActOnCXXTryBlock() 4520 return CXXTryStmt::Create(Context, TryLoc, TryBlock, Handlers); in ActOnCXXTryBlock() 4523 StmtResult Sema::ActOnSEHTryBlock(bool IsCXXTry, SourceLocation TryLoc, in ActOnSEHTryBlock() argument 4533 Diag(TryLoc, diag::err_mixing_cxx_try_seh_try); in ActOnSEHTryBlock() [all …]
|
| H A D | TreeTransform.h | 2322 StmtResult RebuildCXXTryStmt(SourceLocation TryLoc, Stmt *TryBlock, in RebuildCXXTryStmt() argument 2324 return getSema().ActOnCXXTryBlock(TryLoc, TryBlock, Handlers); in RebuildCXXTryStmt() 2388 StmtResult RebuildSEHTryStmt(bool IsCXXTry, SourceLocation TryLoc, in RebuildSEHTryStmt() argument 2390 return getSema().ActOnSEHTryBlock(IsCXXTry, TryLoc, TryBlock, Handler); in RebuildSEHTryStmt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1646 S->TryLoc = readSourceLocation(); in VisitCXXTryStmt() 2249 S->TryLoc = readSourceLocation(); in VisitSEHTryStmt()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Parse/ |
| H A D | Parser.h | 2143 StmtResult ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry = false);
|