Home
last modified time | relevance | path

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

/external/clang/lib/Parse/
DParseStmt.cpp2590 Declarator ExDecl(DS, Declarator::CXXCatchContext); in ParseCXXCatchBlock() local
2591 ParseDeclarator(ExDecl); in ParseCXXCatchBlock()
2592 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl); in ParseCXXCatchBlock()
/external/clang/lib/Sema/
DSemaDeclCXX.cpp10785 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name, in BuildExceptionDeclaration() local
10787 ExDecl->setExceptionVariable(true); in BuildExceptionDeclaration()
10790 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl)) in BuildExceptionDeclaration()
10810 InitializedEntity::InitializeVariable(ExDecl); in BuildExceptionDeclaration()
10826 ExDecl->setInit(init); in BuildExceptionDeclaration()
10830 FinalizeVarWithDestructor(ExDecl, recordType); in BuildExceptionDeclaration()
10836 ExDecl->setInvalidDecl(); in BuildExceptionDeclaration()
10838 return ExDecl; in BuildExceptionDeclaration()
10875 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo, in ActOnExceptionDeclarator() local
10880 ExDecl->setInvalidDecl(); in ActOnExceptionDeclarator()
[all …]
DSemaStmt.cpp2956 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl, in ActOnCXXCatchBlock() argument
2960 cast_or_null<VarDecl>(ExDecl), in ActOnCXXCatchBlock()
/external/clang/lib/AST/
DStmtPrinter.cpp518 if (Decl *ExDecl = Node->getExceptionDecl()) in PrintRawCXXCatchStmt() local
519 PrintRawDecl(ExDecl); in PrintRawCXXCatchStmt()
/external/clang/include/clang/Sema/
DSema.h2956 Decl *ExDecl, Stmt *HandlerBlock);