Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
HDStmtCXX.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-13-stable/contrib/llvm-project/clang/lib/Parse/
HDParseStmt.cpp2718 SourceLocation CatchLoc = ConsumeToken(); in ParseCXXCatchBlock() local
2761 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.get()); in ParseCXXCatchBlock()
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaStmt.cpp4066 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl, in ActOnCXXCatchBlock() argument
4070 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock); in ActOnCXXCatchBlock()
HDTreeTransform.h2554 StmtResult RebuildCXXCatchStmt(SourceLocation CatchLoc, in RebuildCXXCatchStmt() argument
2557 return Owned(new (getSema().Context) CXXCatchStmt(CatchLoc, ExceptionDecl, in RebuildCXXCatchStmt()
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
HDASTReaderStmt.cpp1674 S->CatchLoc = readSourceLocation(); in VisitCXXCatchStmt()
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
HDSema.h10894 StmtResult ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl,