Home
last modified time | relevance | path

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

/external/clang/lib/Parse/
DParseStmt.cpp2114 Declarator ExDecl(DS, Declarator::CXXCatchContext); in ParseCXXCatchBlock() local
2115 ParseDeclarator(ExDecl); in ParseCXXCatchBlock()
2116 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl); in ParseCXXCatchBlock()
/external/clang/lib/Sema/
DSemaDeclCXX.cpp12013 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name, in BuildExceptionDeclaration() local
12015 ExDecl->setExceptionVariable(true); in BuildExceptionDeclaration()
12018 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl)) in BuildExceptionDeclaration()
12038 InitializedEntity::InitializeVariable(ExDecl); in BuildExceptionDeclaration()
12054 ExDecl->setInit(init); in BuildExceptionDeclaration()
12058 FinalizeVarWithDestructor(ExDecl, recordType); in BuildExceptionDeclaration()
12064 ExDecl->setInvalidDecl(); in BuildExceptionDeclaration()
12066 return ExDecl; in BuildExceptionDeclaration()
12107 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo, in ActOnExceptionDeclarator() local
12112 ExDecl->setInvalidDecl(); in ActOnExceptionDeclarator()
[all …]
DSemaStmt.cpp3450 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl, in ActOnCXXCatchBlock() argument
3454 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock); in ActOnCXXCatchBlock()
/external/clang/lib/AST/
DStmtPrinter.cpp515 if (Decl *ExDecl = Node->getExceptionDecl()) in PrintRawCXXCatchStmt() local
516 PrintRawDecl(ExDecl); in PrintRawCXXCatchStmt()
/external/clang/include/clang/Sema/
DSema.h3468 Decl *ExDecl, Stmt *HandlerBlock);