Home | History | Annotate | Download | only in Sema

Lines Matching refs:TryLoc

3183 StmtResult Sema::ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock,
3187 !getSourceManager().isInSystemHeader(TryLoc))
3188 Diag(TryLoc, diag::err_exceptions_disabled) << "try";
3191 Diag(TryLoc, diag::err_omp_simd_region_cannot_use_stmt) << "try";
3243 return CXXTryStmt::Create(Context, TryLoc, TryBlock, Handlers);
3248 SourceLocation TryLoc,
3255 return SEHTryStmt::Create(Context,IsCXXTry,TryLoc,TryBlock,Handler);