Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DStmt.cpp634 : 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/
DParseStmt.cpp377 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/
DStmtCXX.h63 SourceLocation TryLoc; variable
91 SourceLocation getTryLoc() const { return TryLoc; } in getTryLoc()
DStmt.h1694 SourceLocation TryLoc; variable
1700 SourceLocation TryLoc,
1711 SourceLocation TryLoc,
1719 SourceLocation getTryLoc() const { return TryLoc; } in getTryLoc()
/external/clang/lib/Sema/
DSemaStmt.cpp2546 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()
DTreeTransform.h1321 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/
DASTReaderStmt.cpp1047 S->TryLoc = ReadSourceLocation(Record, Idx); in VisitCXXTryStmt()
1503 S->TryLoc = ReadSourceLocation(Record, Idx); in VisitSEHTryStmt()
/external/clang/include/clang/Parse/
DParser.h1608 StmtResult ParseCXXTryBlockCommon(SourceLocation TryLoc);
/external/clang/include/clang/Sema/
DSema.h2384 StmtResult ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock,
2388 SourceLocation TryLoc,