Home
last modified time | relevance | path

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

/external/clang/lib/Parse/
DParseStmt.cpp2146 Declarator ExDecl(DS, Declarator::CXXCatchContext); in ParseCXXCatchBlock() local
2147 ParseDeclarator(ExDecl); in ParseCXXCatchBlock()
2148 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl); in ParseCXXCatchBlock()
/external/clang/lib/Sema/
DSemaDeclCXX.cpp9737 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name, in BuildExceptionDeclaration() local
9739 ExDecl->setExceptionVariable(true); in BuildExceptionDeclaration()
9742 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl)) in BuildExceptionDeclaration()
9759 InitializedEntity::InitializeVariable(ExDecl); in BuildExceptionDeclaration()
9776 ExDecl->setInit(init); in BuildExceptionDeclaration()
9780 FinalizeVarWithDestructor(ExDecl, recordType); in BuildExceptionDeclaration()
9786 ExDecl->setInvalidDecl(); in BuildExceptionDeclaration()
9788 return ExDecl; in BuildExceptionDeclaration()
9825 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo, in ActOnExceptionDeclarator() local
9830 ExDecl->setInvalidDecl(); in ActOnExceptionDeclarator()
[all …]
DSemaStmt.cpp2497 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl, in ActOnCXXCatchBlock() argument
2501 cast_or_null<VarDecl>(ExDecl), in ActOnCXXCatchBlock()
/external/clang/lib/AST/
DStmtPrinter.cpp493 if (Decl *ExDecl = Node->getExceptionDecl()) in PrintRawCXXCatchStmt() local
494 PrintRawDecl(ExDecl); in PrintRawCXXCatchStmt()
/external/clang/include/clang/Sema/
DSema.h2383 Decl *ExDecl, Stmt *HandlerBlock);