Home
last modified time | relevance | path

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

/external/clang/lib/Parse/
DParseStmt.cpp2162 Declarator ExDecl(DS, Declarator::CXXCatchContext); in ParseCXXCatchBlock() local
2163 ParseDeclarator(ExDecl); in ParseCXXCatchBlock()
2164 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl); in ParseCXXCatchBlock()
/external/clang/lib/Sema/
DSemaDeclCXX.cpp12254 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name, in BuildExceptionDeclaration() local
12256 ExDecl->setExceptionVariable(true); in BuildExceptionDeclaration()
12259 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl)) in BuildExceptionDeclaration()
12279 InitializedEntity::InitializeVariable(ExDecl); in BuildExceptionDeclaration()
12295 ExDecl->setInit(init); in BuildExceptionDeclaration()
12299 FinalizeVarWithDestructor(ExDecl, recordType); in BuildExceptionDeclaration()
12305 ExDecl->setInvalidDecl(); in BuildExceptionDeclaration()
12307 return ExDecl; in BuildExceptionDeclaration()
12348 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo, in ActOnExceptionDeclarator() local
12353 ExDecl->setInvalidDecl(); in ActOnExceptionDeclarator()
[all …]
DSemaStmt.cpp3523 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl, in ActOnCXXCatchBlock() argument
3527 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock); in ActOnCXXCatchBlock()
/external/clang/lib/AST/
DStmtPrinter.cpp516 if (Decl *ExDecl = Node->getExceptionDecl()) in PrintRawCXXCatchStmt() local
517 PrintRawDecl(ExDecl); in PrintRawCXXCatchStmt()
/external/clang/include/clang/Sema/
DSema.h3552 Decl *ExDecl, Stmt *HandlerBlock);