HomeSort by: relevance | last modified time | path
    Searched refs:CatchLoc (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
StmtCXX.h 29 SourceLocation CatchLoc;
36 CXXCatchStmt(SourceLocation catchLoc, VarDecl *exDecl, Stmt *handlerBlock)
37 : Stmt(CXXCatchStmtClass), CatchLoc(catchLoc), ExceptionDecl(exDecl),
43 SourceLocation getBeginLoc() const LLVM_READONLY { return CatchLoc; }
48 SourceLocation getCatchLoc() const { return CatchLoc; }
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseStmt.cpp 2458 SourceLocation CatchLoc = ConsumeToken();
2502 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.get());
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmt.cpp 4310 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl,
4314 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock);
TreeTransform.h 2311 StmtResult RebuildCXXCatchStmt(SourceLocation CatchLoc,
2314 return Owned(new (getSema().Context) CXXCatchStmt(CatchLoc, ExceptionDecl,
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 1637 S->CatchLoc = readSourceLocation();
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h 4834 StmtResult ActOnCXXCatchBlock(SourceLocation CatchLoc,

Completed in 69 milliseconds