Searched defs:CatchLoc (Results 1 - 4 of 4) sorted by relevance
/external/clang/include/clang/AST/ |
H A D | StmtCXX.h | 30 SourceLocation CatchLoc; member in class:clang::CXXCatchStmt 38 : Stmt(CXXCatchStmtClass), CatchLoc(catchLoc), ExceptionDecl(exDecl), 44 SourceLocation getLocStart() const LLVM_READONLY { return CatchLoc; } 49 SourceLocation getCatchLoc() const { return CatchLoc; }
|
/external/clang/lib/Parse/ |
H A D | ParseStmt.cpp | 2089 SourceLocation CatchLoc = ConsumeToken(); local 2132 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.get());
|
/external/clang/lib/Sema/ |
H A D | SemaStmt.cpp | 3450 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl, argument 3454 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock);
|
H A D | TreeTransform.h | 1801 StmtResult RebuildCXXCatchStmt(SourceLocation CatchLoc, argument 1804 return Owned(new (getSema().Context) CXXCatchStmt(CatchLoc, ExceptionDecl,
|
Completed in 110 milliseconds