Searched defs:TryLoc (Results 1 - 6 of 6) sorted by relevance

/external/clang/include/clang/AST/
H A DStmtCXX.h66 SourceLocation TryLoc; member in class:clang::CXXTryStmt
91 SourceLocation getTryLoc() const { return TryLoc; }
H A DStmt.h1893 SourceLocation TryLoc; member in class:clang::SEHTryStmt
1899 SourceLocation TryLoc,
1909 SourceLocation TryLoc, Stmt *TryBlock,
1915 SourceLocation getTryLoc() const { return TryLoc; }
/external/clang/lib/Parse/
H A DParseStmt.cpp426 StmtResult Parser::ParseSEHTryBlockCommon(SourceLocation TryLoc) { argument
451 TryLoc,
1882 SourceLocation TryLoc = ConsumeToken(); local
1884 PrettyDeclStackTraceEntry CrashInfo(Actions, Decl, TryLoc,
1900 StmtResult FnBody(ParseCXXTryBlockCommon(TryLoc, /*FnTry*/true));
1944 SourceLocation TryLoc = ConsumeToken(); local
1945 return ParseCXXTryBlockCommon(TryLoc);
1964 StmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry) { argument
1994 TryLoc,
2017 return Actions.ActOnCXXTryBlock(TryLoc, TryBloc
[all...]
/external/clang/lib/AST/
H A DStmt.cpp782 : Stmt(CXXTryStmtClass), TryLoc(tryLoc), NumHandlers(handlers.size()) {
960 SourceLocation TryLoc,
965 TryLoc(TryLoc)
972 SourceLocation TryLoc, Stmt *TryBlock,
974 return new(C) SEHTryStmt(IsCXXTry,TryLoc,TryBlock,Handler);
959 SEHTryStmt(bool IsCXXTry, SourceLocation TryLoc, Stmt *TryBlock, Stmt *Handler) argument
971 Create(const ASTContext &C, bool IsCXXTry, SourceLocation TryLoc, Stmt *TryBlock, Stmt *Handler) argument
/external/clang/lib/Sema/
H A DSemaStmt.cpp3183 StmtResult Sema::ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock, argument
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);
3247 ActOnSEHTryBlock(bool IsCXXTry, SourceLocation TryLoc, Stmt *TryBlock, Stmt *Handler) argument
H A DTreeTransform.h1586 StmtResult RebuildCXXTryStmt(SourceLocation TryLoc, Stmt *TryBlock, argument
1588 return getSema().ActOnCXXTryBlock(TryLoc, TryBlock, Handlers);
1644 StmtResult RebuildSEHTryStmt(bool IsCXXTry, SourceLocation TryLoc, argument
1646 return getSema().ActOnSEHTryBlock(IsCXXTry, TryLoc, TryBlock, Handler);

Completed in 490 milliseconds