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

/external/clang/include/clang/AST/
H A DStmtCXX.h63 SourceLocation TryLoc; member in class:clang::CXXTryStmt
91 SourceLocation getTryLoc() const { return TryLoc; }
H A DStmt.h1841 SourceLocation TryLoc; member in class:clang::SEHTryStmt
1847 SourceLocation TryLoc,
1858 SourceLocation TryLoc,
1866 SourceLocation getTryLoc() const { return TryLoc; }
/external/clang/lib/AST/
H A DStmt.cpp804 : Stmt(CXXTryStmtClass), TryLoc(tryLoc), NumHandlers(numHandlers) {
982 SourceLocation TryLoc,
987 TryLoc(TryLoc)
995 SourceLocation TryLoc,
998 return new(C) SEHTryStmt(IsCXXTry,TryLoc,TryBlock,Handler);
981 SEHTryStmt(bool IsCXXTry, SourceLocation TryLoc, Stmt *TryBlock, Stmt *Handler) argument
993 Create(ASTContext &C, bool IsCXXTry, SourceLocation TryLoc, Stmt *TryBlock, Stmt *Handler) argument
/external/clang/lib/Parse/
H A DParseStmt.cpp321 StmtResult Parser::ParseSEHTryBlockCommon(SourceLocation TryLoc) { argument
345 TryLoc,
1951 SourceLocation TryLoc = ConsumeToken(); local
1953 PrettyDeclStackTraceEntry CrashInfo(Actions, Decl, TryLoc,
1968 StmtResult FnBody(ParseCXXTryBlockCommon(TryLoc));
2008 SourceLocation TryLoc = ConsumeToken(); local
2009 return ParseCXXTryBlockCommon(TryLoc);
2028 StmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc) { argument
2057 TryLoc,
2079 return Actions.ActOnCXXTryBlock(TryLoc, TryBloc
[all...]
/external/clang/lib/Sema/
H A DSemaStmt.cpp2680 Sema::ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock, argument
2684 !getSourceManager().isInSystemHeader(TryLoc))
2685 Diag(TryLoc, diag::err_exceptions_disabled) << "try";
2738 return Owned(CXXTryStmt::Create(Context, TryLoc, TryBlock,
2744 SourceLocation TryLoc,
2751 return Owned(SEHTryStmt::Create(Context,IsCXXTry,TryLoc,TryBlock,Handler));
2743 ActOnSEHTryBlock(bool IsCXXTry, SourceLocation TryLoc, Stmt *TryBlock, Stmt *Handler) argument
H A DTreeTransform.h1316 StmtResult RebuildCXXTryStmt(SourceLocation TryLoc, argument
1319 return getSema().ActOnCXXTryBlock(TryLoc, TryBlock, Handlers);
1358 SourceLocation TryLoc,
1361 return getSema().ActOnSEHTryBlock(IsCXXTry,TryLoc,TryBlock,Handler);
1357 RebuildSEHTryStmt(bool IsCXXTry, SourceLocation TryLoc, Stmt *TryBlock, Stmt *Handler) argument
/external/clang/include/clang/Parse/
H A DParser.h1510 StmtResult ParseCXXTryBlockCommon(SourceLocation TryLoc);
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp1057 S->TryLoc = ReadSourceLocation(Record, Idx);
1514 S->TryLoc = ReadSourceLocation(Record, Idx);
/external/clang/include/clang/Sema/
H A DSema.h2617 StmtResult ActOnCXXTryBlock(SourceLocation TryLoc, Stmt *TryBlock,
2621 SourceLocation TryLoc,

Completed in 628 milliseconds