Home
last modified time | relevance | path

Searched refs:CatchLoc (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtCXX.h29 SourceLocation CatchLoc; variable
37 : Stmt(CXXCatchStmtClass), CatchLoc(catchLoc), ExceptionDecl(exDecl), in CXXCatchStmt()
43 SourceLocation getBeginLoc() const LLVM_READONLY { return CatchLoc; } in getBeginLoc()
48 SourceLocation getCatchLoc() const { return CatchLoc; } in getCatchLoc()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp2544 SourceLocation CatchLoc = ConsumeToken(); in ParseCXXCatchBlock() local
2587 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.get()); in ParseCXXCatchBlock()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp4186 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl, in ActOnCXXCatchBlock() argument
4190 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock); in ActOnCXXCatchBlock()
H A DTreeTransform.h2587 StmtResult RebuildCXXCatchStmt(SourceLocation CatchLoc, in RebuildCXXCatchStmt() argument
2590 return Owned(new (getSema().Context) CXXCatchStmt(CatchLoc, ExceptionDecl, in RebuildCXXCatchStmt()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1693 S->CatchLoc = readSourceLocation(); in VisitCXXCatchStmt()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h11109 StmtResult ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl,