HomeSort by: relevance | last modified time | path
    Searched defs:TryLoc (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
StmtCXX.h 74 SourceLocation TryLoc;
78 CXXTryStmt(SourceLocation tryLoc, Stmt *tryBlock, ArrayRef<Stmt*> handlers);
86 static CXXTryStmt *Create(const ASTContext &C, SourceLocation tryLoc,
94 SourceLocation getTryLoc() const { return TryLoc; }
Stmt.h 3384 SourceLocation TryLoc;
3390 SourceLocation TryLoc,
3398 SourceLocation TryLoc, Stmt *TryBlock,
3403 SourceLocation getTryLoc() const { return TryLoc; }
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseStmt.cpp 494 SourceLocation TryLoc = ConsumeToken();
521 TryLoc,
2290 SourceLocation TryLoc = ConsumeToken();
2292 PrettyDeclStackTraceEntry CrashInfo(Actions.Context, Decl, TryLoc,
2308 StmtResult FnBody(ParseCXXTryBlockCommon(TryLoc, /*FnTry*/true));
2368 SourceLocation TryLoc = ConsumeToken();
2369 return ParseCXXTryBlockCommon(TryLoc);
2388 StmtResult Parser::ParseCXXTryBlockCommon(SourceLocation TryLoc, bool FnTry) {
2418 TryLoc,
2441 return Actions.ActOnCXXTryBlock(TryLoc, TryBlock.get(), Handlers)
    [all...]

Completed in 57 milliseconds