Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Parse/
H A DParseStmt.cpp2489 Declarator ExDecl(DS, DeclaratorContext::CXXCatch); in ParseCXXCatchBlock() local
2490 ParseDeclarator(ExDecl); in ParseCXXCatchBlock()
2491 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl); in ParseCXXCatchBlock()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp16189 ExDecl->setExceptionVariable(true); in BuildExceptionDeclaration()
16213 InitializedEntity::InitializeVariable(ExDecl); in BuildExceptionDeclaration()
16229 ExDecl->setInit(init); in BuildExceptionDeclaration()
16239 ExDecl->setInvalidDecl(); in BuildExceptionDeclaration()
16241 return ExDecl; in BuildExceptionDeclaration()
16282 VarDecl *ExDecl = BuildExceptionDeclaration( in ActOnExceptionDeclarator() local
16285 ExDecl->setInvalidDecl(); in ActOnExceptionDeclarator()
16289 PushOnScopeChains(ExDecl, S); in ActOnExceptionDeclarator()
16291 CurContext->addDecl(ExDecl); in ActOnExceptionDeclarator()
16293 ProcessDeclAttributes(S, ExDecl, D); in ActOnExceptionDeclarator()
[all …]
H A DSemaStmt.cpp4258 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl, in ActOnCXXCatchBlock() argument
4262 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock); in ActOnCXXCatchBlock()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DStmtPrinter.cpp566 if (Decl *ExDecl = Node->getExceptionDecl()) in PrintRawCXXCatchStmt() local
567 PrintRawDecl(ExDecl); in PrintRawCXXCatchStmt()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4871 Decl *ExDecl, Stmt *HandlerBlock);