/external/clang/lib/AST/ |
D | Stmt.cpp | 634 : Stmt(CXXTryStmtClass), TryLoc(tryLoc), NumHandlers(numHandlers) { in CXXTryStmt() 812 SourceLocation TryLoc, in SEHTryStmt() argument 817 TryLoc(TryLoc) in SEHTryStmt() 825 SourceLocation TryLoc, in Create() argument 828 return new(C) SEHTryStmt(IsCXXTry,TryLoc,TryBlock,Handler); in Create()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 377 StmtResult Parser::ParseSEHTryBlockCommon(SourceLocation TryLoc) { in ParseSEHTryBlockCommon() argument 401 TryLoc, in ParseSEHTryBlockCommon() 1982 SourceLocation TryLoc = ConsumeToken(); in ParseFunctionTryBlock() local 1984 PrettyDeclStackTraceEntry CrashInfo(Actions, Decl, TryLoc, in ParseFunctionTryBlock() 1999 StmtResult FnBody(ParseCXXTryBlockCommon(TryLoc)); in ParseFunctionTryBlock() 2039 SourceLocation TryLoc = ConsumeToken(); in ParseCXXTryBlock() local 2040 return ParseCXXTryBlockCommon(TryLoc); in ParseCXXTryBlock() 2059 StmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc) { in ParseCXXTryBlockCommon() argument 2088 TryLoc, in ParseCXXTryBlockCommon() 2110 return Actions.ActOnCXXTryBlock(TryLoc, TryBlock.take(), move_arg(Handlers)); in ParseCXXTryBlockCommon()
|
/external/clang/include/clang/AST/ |
D | StmtCXX.h | 63 SourceLocation TryLoc; variable 91 SourceLocation getTryLoc() const { return TryLoc; } in getTryLoc()
|
D | Stmt.h | 1694 SourceLocation TryLoc; variable 1700 SourceLocation TryLoc, 1711 SourceLocation TryLoc, 1719 SourceLocation getTryLoc() const { return TryLoc; } in getTryLoc()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 2546 Sema::ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock, in ActOnCXXTryBlock() argument 2550 !getSourceManager().isInSystemHeader(TryLoc)) in ActOnCXXTryBlock() 2551 Diag(TryLoc, diag::err_exceptions_disabled) << "try"; in ActOnCXXTryBlock() 2604 return Owned(CXXTryStmt::Create(Context, TryLoc, TryBlock, in ActOnCXXTryBlock() 2610 SourceLocation TryLoc, in ActOnSEHTryBlock() argument 2617 return Owned(SEHTryStmt::Create(Context,IsCXXTry,TryLoc,TryBlock,Handler)); in ActOnSEHTryBlock()
|
D | TreeTransform.h | 1321 StmtResult RebuildCXXTryStmt(SourceLocation TryLoc, in RebuildCXXTryStmt() argument 1324 return getSema().ActOnCXXTryBlock(TryLoc, TryBlock, move(Handlers)); in RebuildCXXTryStmt() 1363 SourceLocation TryLoc, in RebuildSEHTryStmt() argument 1366 return getSema().ActOnSEHTryBlock(IsCXXTry,TryLoc,TryBlock,Handler); in RebuildSEHTryStmt()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1047 S->TryLoc = ReadSourceLocation(Record, Idx); in VisitCXXTryStmt() 1503 S->TryLoc = ReadSourceLocation(Record, Idx); in VisitSEHTryStmt()
|
/external/clang/include/clang/Parse/ |
D | Parser.h | 1608 StmtResult ParseCXXTryBlockCommon(SourceLocation TryLoc);
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 2384 StmtResult ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock, 2388 SourceLocation TryLoc,
|