Searched refs:TryLoc (Results 1 - 9 of 9) 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.h1854 SourceLocation TryLoc; member in class:clang::SEHTryStmt
1860 SourceLocation TryLoc,
1871 SourceLocation TryLoc,
1878 SourceLocation getTryLoc() const { return TryLoc; }
/external/clang/lib/AST/
H A DStmt.cpp784 : Stmt(CXXTryStmtClass), TryLoc(tryLoc), NumHandlers(handlers.size()) {
962 SourceLocation TryLoc,
967 TryLoc(TryLoc)
975 SourceLocation TryLoc,
978 return new(C) SEHTryStmt(IsCXXTry,TryLoc,TryBlock,Handler);
961 SEHTryStmt(bool IsCXXTry, SourceLocation TryLoc, Stmt *TryBlock, Stmt *Handler) argument
973 Create(ASTContext &C, bool IsCXXTry, SourceLocation TryLoc, Stmt *TryBlock, Stmt *Handler) argument
/external/clang/lib/Parse/
H A DParseStmt.cpp376 StmtResult Parser::ParseSEHTryBlockCommon(SourceLocation TryLoc) { argument
400 TryLoc,
2412 SourceLocation TryLoc = ConsumeToken(); local
2414 PrettyDeclStackTraceEntry CrashInfo(Actions, Decl, TryLoc,
2430 StmtResult FnBody(ParseCXXTryBlockCommon(TryLoc, /*FnTry*/true));
2476 SourceLocation TryLoc = ConsumeToken(); local
2477 return ParseCXXTryBlockCommon(TryLoc);
2496 StmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry) { argument
2526 TryLoc,
2548 return Actions.ActOnCXXTryBlock(TryLoc, TryBloc
[all...]
/external/clang/lib/Sema/
H A DSemaStmt.cpp3005 Sema::ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock, argument
3009 !getSourceManager().isInSystemHeader(TryLoc))
3010 Diag(TryLoc, diag::err_exceptions_disabled) << "try";
3063 return Owned(CXXTryStmt::Create(Context, TryLoc, TryBlock,
3069 SourceLocation TryLoc,
3076 return Owned(SEHTryStmt::Create(Context,IsCXXTry,TryLoc,TryBlock,Handler));
3068 ActOnSEHTryBlock(bool IsCXXTry, SourceLocation TryLoc, Stmt *TryBlock, Stmt *Handler) argument
H A DTreeTransform.h1387 StmtResult RebuildCXXTryStmt(SourceLocation TryLoc, argument
1390 return getSema().ActOnCXXTryBlock(TryLoc, TryBlock, Handlers);
1447 SourceLocation TryLoc,
1450 return getSema().ActOnSEHTryBlock(IsCXXTry,TryLoc,TryBlock,Handler);
1446 RebuildSEHTryStmt(bool IsCXXTry, SourceLocation TryLoc, Stmt *TryBlock, Stmt *Handler) argument
/external/clang/include/clang/Parse/
H A DParser.h1559 StmtResult ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry = false);
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp1146 S->TryLoc = ReadSourceLocation(Record, Idx);
1637 S->TryLoc = ReadSourceLocation(Record, Idx);
/external/clang/include/clang/Sema/
H A DSema.h2957 StmtResult ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock,
2961 SourceLocation TryLoc,

Completed in 542 milliseconds