Home
last modified time | relevance | path

Searched refs:ExDecl (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp2728 Declarator ExDecl(DS, Attributes, DeclaratorContext::CXXCatch); in ParseCXXCatchBlock() local
2729 ParseDeclarator(ExDecl); in ParseCXXCatchBlock()
2730 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl); in ParseCXXCatchBlock()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp16966 ExDecl->setExceptionVariable(true); in BuildExceptionDeclaration()
16990 InitializedEntity::InitializeVariable(ExDecl); in BuildExceptionDeclaration()
17006 ExDecl->setInit(init); in BuildExceptionDeclaration()
17016 ExDecl->setInvalidDecl(); in BuildExceptionDeclaration()
17018 return ExDecl; in BuildExceptionDeclaration()
17059 VarDecl *ExDecl = BuildExceptionDeclaration( in ActOnExceptionDeclarator() local
17062 ExDecl->setInvalidDecl(); in ActOnExceptionDeclarator()
17066 PushOnScopeChains(ExDecl, S); in ActOnExceptionDeclarator()
17068 CurContext->addDecl(ExDecl); in ActOnExceptionDeclarator()
17070 ProcessDeclAttributes(S, ExDecl, D); in ActOnExceptionDeclarator()
[all …]
H A DSemaStmt.cpp4357 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl, in ActOnCXXCatchBlock() argument
4361 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock); in ActOnCXXCatchBlock()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DStmtPrinter.cpp647 if (Decl *ExDecl = Node->getExceptionDecl()) in PrintRawCXXCatchStmt() local
648 PrintRawDecl(ExDecl); in PrintRawCXXCatchStmt()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h5383 Decl *ExDecl, Stmt *HandlerBlock);