Searched defs:CatchLoc (Results 1 - 4 of 4) sorted by relevance

/external/clang/include/clang/AST/
H A DStmtCXX.h30 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 DParseStmt.cpp2137 SourceLocation CatchLoc = ConsumeToken(); local
2180 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.get());
/external/clang/lib/Sema/
H A DSemaStmt.cpp3523 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl, argument
3527 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock);
H A DTreeTransform.h1874 StmtResult RebuildCXXCatchStmt(SourceLocation CatchLoc, argument
1877 return Owned(new (getSema().Context) CXXCatchStmt(CatchLoc, ExceptionDecl,

Completed in 135 milliseconds