Home
last modified time | relevance | path

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

/external/clang/lib/Parse/
DParseStmt.cpp2059 Declarator ExDecl(DS, Declarator::CXXCatchContext); in ParseCXXCatchBlock() local
2060 ParseDeclarator(ExDecl); in ParseCXXCatchBlock()
2061 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl); in ParseCXXCatchBlock()
/external/clang/lib/Sema/
DSemaDeclCXX.cpp11369 VarDecl *ExDecl = VarDecl::Create(Context, CurContext, StartLoc, Loc, Name, in BuildExceptionDeclaration() local
11371 ExDecl->setExceptionVariable(true); in BuildExceptionDeclaration()
11374 if (getLangOpts().ObjCAutoRefCount && inferObjCARCLifetime(ExDecl)) in BuildExceptionDeclaration()
11394 InitializedEntity::InitializeVariable(ExDecl); in BuildExceptionDeclaration()
11410 ExDecl->setInit(init); in BuildExceptionDeclaration()
11414 FinalizeVarWithDestructor(ExDecl, recordType); in BuildExceptionDeclaration()
11420 ExDecl->setInvalidDecl(); in BuildExceptionDeclaration()
11422 return ExDecl; in BuildExceptionDeclaration()
11463 VarDecl *ExDecl = BuildExceptionDeclaration(S, TInfo, in ActOnExceptionDeclarator() local
11468 ExDecl->setInvalidDecl(); in ActOnExceptionDeclarator()
[all …]
DSemaStmt.cpp3136 Sema::ActOnCXXCatchBlock(SourceLocation CatchLoc, Decl *ExDecl, in ActOnCXXCatchBlock() argument
3140 CXXCatchStmt(CatchLoc, cast_or_null<VarDecl>(ExDecl), HandlerBlock); in ActOnCXXCatchBlock()
/external/clang/lib/AST/
DStmtPrinter.cpp512 if (Decl *ExDecl = Node->getExceptionDecl()) in PrintRawCXXCatchStmt() local
513 PrintRawDecl(ExDecl); in PrintRawCXXCatchStmt()
/external/clang/include/clang/Sema/
DSema.h3162 Decl *ExDecl, Stmt *HandlerBlock);