/external/clang/include/clang/AST/ |
D | StmtCXX.h | 66 SourceLocation TryLoc; variable 91 SourceLocation getTryLoc() const { return TryLoc; } in getTryLoc()
|
D | Stmt.h | 1854 SourceLocation TryLoc; variable 1860 SourceLocation TryLoc, 1871 SourceLocation TryLoc, 1878 SourceLocation getTryLoc() const { return TryLoc; } in getTryLoc()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 376 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/ |
D | Stmt.cpp | 784 : 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/ |
D | SemaStmt.cpp | 3005 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()
|
D | TreeTransform.h | 1387 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/ |
D | ASTReaderStmt.cpp | 1146 S->TryLoc = ReadSourceLocation(Record, Idx); in VisitCXXTryStmt() 1637 S->TryLoc = ReadSourceLocation(Record, Idx); in VisitSEHTryStmt()
|
/external/clang/include/clang/Parse/ |
D | Parser.h | 1559 StmtResult ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry = false);
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 2957 StmtResult ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock, 2961 SourceLocation TryLoc,
|