Searched refs:ExDecl (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseStmt.cpp | 2569 Declarator ExDecl(DS, Attributes, DeclaratorContext::CXXCatch); in ParseCXXCatchBlock() local 2570 ParseDeclarator(ExDecl); in ParseCXXCatchBlock() 2571 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl); in ParseCXXCatchBlock()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaDeclCXX.cpp | 17298 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name, in BuildExceptionDeclaration() local 17300 ExDecl->setExceptionVariable(true); in BuildExceptionDeclaration() 17303 if (getLangOpts().ObjCAutoRefCount && ObjC().inferObjCARCLifetime(ExDecl)) in BuildExceptionDeclaration() 17324 InitializedEntity::InitializeVariable(ExDecl); in BuildExceptionDeclaration() 17340 ExDecl->setInit(init); in BuildExceptionDeclaration() 17344 FinalizeVarWithDestructor(ExDecl, recordType); in BuildExceptionDeclaration() 17350 ExDecl->setInvalidDecl(); in BuildExceptionDeclaration() 17352 return ExDecl; in BuildExceptionDeclaration() 17391 VarDecl *ExDecl = BuildExceptionDeclaration( in ActOnExceptionDeclarator() local 17394 ExDecl->setInvalidDecl(); in ActOnExceptionDeclarator() [all …]
|
| H A D | SemaStmt.cpp | 4186 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl, in ActOnCXXCatchBlock() argument 4190 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock); in ActOnCXXCatchBlock()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | StmtPrinter.cpp | 659 if (Decl *ExDecl = Node->getExceptionDecl()) in PrintRawCXXCatchStmt() local 660 PrintRawDecl(ExDecl); in PrintRawCXXCatchStmt()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | Sema.h | 11109 StmtResult ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl,
|