Home
last modified time | relevance | path

Searched refs:TryLoc (Results 1 – 9 of 9) sorted by relevance

/external/clang/include/clang/AST/
DStmtCXX.h66 SourceLocation TryLoc; variable
91 SourceLocation getTryLoc() const { return TryLoc; } in getTryLoc()
DStmt.h1854 SourceLocation TryLoc; variable
1860 SourceLocation TryLoc,
1871 SourceLocation TryLoc,
1878 SourceLocation getTryLoc() const { return TryLoc; } in getTryLoc()
/external/clang/lib/Parse/
DParseStmt.cpp376 StmtResult Parser::ParseSEHTryBlockCommon(SourceLocation TryLoc) { in ParseSEHTryBlockCommon() argument
400 TryLoc, in ParseSEHTryBlockCommon()
2412 SourceLocation TryLoc = ConsumeToken(); in ParseFunctionTryBlock() local
2414 PrettyDeclStackTraceEntry CrashInfo(Actions, Decl, TryLoc, in ParseFunctionTryBlock()
2430 StmtResult FnBody(ParseCXXTryBlockCommon(TryLoc, /*FnTry*/true)); in ParseFunctionTryBlock()
2476 SourceLocation TryLoc = ConsumeToken(); in ParseCXXTryBlock() local
2477 return ParseCXXTryBlockCommon(TryLoc); in ParseCXXTryBlock()
2496 StmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry) { in ParseCXXTryBlockCommon() argument
2526 TryLoc, in ParseCXXTryBlockCommon()
2548 return Actions.ActOnCXXTryBlock(TryLoc, TryBlock.take(),Handlers); in ParseCXXTryBlockCommon()
/external/clang/lib/AST/
DStmt.cpp784 : Stmt(CXXTryStmtClass), TryLoc(tryLoc), NumHandlers(handlers.size()) { in CXXTryStmt()
962 SourceLocation TryLoc, in SEHTryStmt() argument
967 TryLoc(TryLoc) in SEHTryStmt()
975 SourceLocation TryLoc, in Create() argument
978 return new(C) SEHTryStmt(IsCXXTry,TryLoc,TryBlock,Handler); in Create()
/external/clang/lib/Sema/
DSemaStmt.cpp3005 Sema::ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock, in ActOnCXXTryBlock() argument
3009 !getSourceManager().isInSystemHeader(TryLoc)) in ActOnCXXTryBlock()
3010 Diag(TryLoc, diag::err_exceptions_disabled) << "try"; in ActOnCXXTryBlock()
3063 return Owned(CXXTryStmt::Create(Context, TryLoc, TryBlock, in ActOnCXXTryBlock()
3069 SourceLocation TryLoc, in ActOnSEHTryBlock() argument
3076 return Owned(SEHTryStmt::Create(Context,IsCXXTry,TryLoc,TryBlock,Handler)); in ActOnSEHTryBlock()
DTreeTransform.h1387 StmtResult RebuildCXXTryStmt(SourceLocation TryLoc, in RebuildCXXTryStmt() argument
1390 return getSema().ActOnCXXTryBlock(TryLoc, TryBlock, Handlers); in RebuildCXXTryStmt()
1447 SourceLocation TryLoc, in RebuildSEHTryStmt() argument
1450 return getSema().ActOnSEHTryBlock(IsCXXTry,TryLoc,TryBlock,Handler); in RebuildSEHTryStmt()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp1146 S->TryLoc = ReadSourceLocation(Record, Idx); in VisitCXXTryStmt()
1637 S->TryLoc = ReadSourceLocation(Record, Idx); in VisitSEHTryStmt()
/external/clang/include/clang/Parse/
DParser.h1559 StmtResult ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry = false);
/external/clang/include/clang/Sema/
DSema.h2957 StmtResult ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock,
2961 SourceLocation TryLoc,