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.cpp2034 SourceLocation CatchLoc = ConsumeToken(); local
2077 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.get());
/external/clang/lib/Sema/
H A DSemaStmt.cpp3136 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl, argument
3140 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock);
H A DTreeTransform.h1575 StmtResult RebuildCXXCatchStmt(SourceLocation CatchLoc, argument
1578 return Owned(new (getSema().Context) CXXCatchStmt(CatchLoc, ExceptionDecl,

Completed in 1334 milliseconds