Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParseStmt.cpp2664 Declarator ExDecl(DS, Attributes, DeclaratorContext::CXXCatch); in ParseCXXCatchBlock() local
2665 ParseDeclarator(ExDecl); in ParseCXXCatchBlock()
2666 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl); in ParseCXXCatchBlock()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaDeclCXX.cpp16507 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name, in BuildExceptionDeclaration() local
16509 ExDecl->setExceptionVariable(true); in BuildExceptionDeclaration()
16512 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl)) in BuildExceptionDeclaration()
16533 InitializedEntity::InitializeVariable(ExDecl); in BuildExceptionDeclaration()
16549 ExDecl->setInit(init); in BuildExceptionDeclaration()
16553 FinalizeVarWithDestructor(ExDecl, recordType); in BuildExceptionDeclaration()
16559 ExDecl->setInvalidDecl(); in BuildExceptionDeclaration()
16561 return ExDecl; in BuildExceptionDeclaration()
16602 VarDecl *ExDecl = BuildExceptionDeclaration( in ActOnExceptionDeclarator() local
16605 ExDecl->setInvalidDecl(); in ActOnExceptionDeclarator()
[all …]
H A DSemaStmt.cpp4322 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl, in ActOnCXXCatchBlock() argument
4326 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock); in ActOnCXXCatchBlock()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DStmtPrinter.cpp642 if (Decl *ExDecl = Node->getExceptionDecl()) in PrintRawCXXCatchStmt() local
643 PrintRawDecl(ExDecl); in PrintRawCXXCatchStmt()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h5257 Decl *ExDecl, Stmt *HandlerBlock);