Searched refs:ExceptionDecl (Results 1 – 7 of 7) sorted by relevance
/external/clang/include/clang/AST/ |
D | StmtCXX.h | 32 VarDecl *ExceptionDecl; variable 38 : Stmt(CXXCatchStmtClass), CatchLoc(catchLoc), ExceptionDecl(exDecl), in CXXCatchStmt() 42 : Stmt(CXXCatchStmtClass), ExceptionDecl(nullptr), HandlerBlock(nullptr) {} in CXXCatchStmt() 50 VarDecl *getExceptionDecl() const { return ExceptionDecl; } in getExceptionDecl()
|
D | StmtObjC.h | 76 VarDecl *ExceptionDecl; 84 : Stmt(ObjCAtCatchStmtClass), ExceptionDecl(catchVarDecl), in ObjCAtCatchStmt() 95 return ExceptionDecl; in getCatchParamDecl() 98 return ExceptionDecl; in getCatchParamDecl() 100 void setCatchParamDecl(VarDecl *D) { ExceptionDecl = D; } in setCatchParamDecl()
|
/external/clang/lib/Sema/ |
D | SemaTemplateInstantiate.cpp | 730 VarDecl *RebuildExceptionDecl(VarDecl *ExceptionDecl, 738 VarDecl *RebuildObjCExceptionDecl(VarDecl *ExceptionDecl, 962 TemplateInstantiator::RebuildExceptionDecl(VarDecl *ExceptionDecl, in RebuildExceptionDecl() argument 967 VarDecl *Var = inherited::RebuildExceptionDecl(ExceptionDecl, Declarator, in RebuildExceptionDecl() 970 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var); in RebuildExceptionDecl() 974 VarDecl *TemplateInstantiator::RebuildObjCExceptionDecl(VarDecl *ExceptionDecl, in RebuildObjCExceptionDecl() argument 977 VarDecl *Var = inherited::RebuildObjCExceptionDecl(ExceptionDecl, TSInfo, T); in RebuildObjCExceptionDecl() 979 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var); in RebuildObjCExceptionDecl()
|
D | TreeTransform.h | 1285 VarDecl *RebuildObjCExceptionDecl(VarDecl *ExceptionDecl, in RebuildObjCExceptionDecl() argument 1288 ExceptionDecl->getInnerLocStart(), in RebuildObjCExceptionDecl() 1289 ExceptionDecl->getLocation(), in RebuildObjCExceptionDecl() 1290 ExceptionDecl->getIdentifier()); in RebuildObjCExceptionDecl() 1609 VarDecl *RebuildExceptionDecl(VarDecl *ExceptionDecl, in RebuildExceptionDecl() argument 1626 VarDecl *ExceptionDecl, in RebuildCXXCatchStmt() argument 1628 return Owned(new (getSema().Context) CXXCatchStmt(CatchLoc, ExceptionDecl, in RebuildCXXCatchStmt() 6376 if (VarDecl *ExceptionDecl = S->getExceptionDecl()) { in TransformCXXCatchStmt() local 6378 getDerived().TransformType(ExceptionDecl->getTypeSourceInfo()); in TransformCXXCatchStmt() 6383 ExceptionDecl, T, ExceptionDecl->getInnerLocStart(), in TransformCXXCatchStmt() [all …]
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 2057 Decl *ExceptionDecl = nullptr; in ParseCXXCatchBlock() local 2070 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl); in ParseCXXCatchBlock() 2086 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.get()); in ParseCXXCatchBlock()
|
/external/clang/lib/AST/ |
D | Stmt.cpp | 679 if (ExceptionDecl) in getCaughtType() 680 return ExceptionDecl->getType(); in getCaughtType()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 1145 S->ExceptionDecl = ReadDeclAs<VarDecl>(Record, Idx); in VisitCXXCatchStmt()
|