HomeSort by: relevance | last modified time | path
    Searched defs:CatchLoc (Results 1 - 2 of 2) 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());

Completed in 46 milliseconds