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.cpp2718 SourceLocation CatchLoc = ConsumeToken(); in ParseCXXCatchBlock() local
2761 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.get()); in ParseCXXCatchBlock()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmt.cpp4066 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl, in ActOnCXXCatchBlock() argument
4070 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock); in ActOnCXXCatchBlock()
H A DTreeTransform.h2554 StmtResult RebuildCXXCatchStmt(SourceLocation CatchLoc, in RebuildCXXCatchStmt() argument
2557 return Owned(new (getSema().Context) CXXCatchStmt(CatchLoc, ExceptionDecl, in RebuildCXXCatchStmt()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1674 S->CatchLoc = readSourceLocation(); in VisitCXXCatchStmt()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10894 StmtResult ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl,