Home
last modified time | relevance | path

Searched refs:ExceptionDecl (Results 1 – 7 of 7) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DStmtCXX.h32 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()
H A DStmtObjC.h76 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()
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp750 VarDecl *RebuildExceptionDecl(VarDecl *ExceptionDecl,
758 VarDecl *RebuildObjCExceptionDecl(VarDecl *ExceptionDecl,
982 TemplateInstantiator::RebuildExceptionDecl(VarDecl *ExceptionDecl, in RebuildExceptionDecl() argument
987 VarDecl *Var = inherited::RebuildExceptionDecl(ExceptionDecl, Declarator, in RebuildExceptionDecl()
990 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var); in RebuildExceptionDecl()
994 VarDecl *TemplateInstantiator::RebuildObjCExceptionDecl(VarDecl *ExceptionDecl, in RebuildObjCExceptionDecl() argument
997 VarDecl *Var = inherited::RebuildObjCExceptionDecl(ExceptionDecl, TSInfo, T); in RebuildObjCExceptionDecl()
999 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var); in RebuildObjCExceptionDecl()
H A DTreeTransform.h1285 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()
6353 if (VarDecl *ExceptionDecl = S->getExceptionDecl()) { in TransformCXXCatchStmt() local
6355 getDerived().TransformType(ExceptionDecl->getTypeSourceInfo()); in TransformCXXCatchStmt()
6360 ExceptionDecl, T, ExceptionDecl->getInnerLocStart(), in TransformCXXCatchStmt()
[all …]
/minix3/external/bsd/llvm/dist/clang/lib/Parse/
H A DParseStmt.cpp2042 Decl *ExceptionDecl = nullptr; in ParseCXXCatchBlock() local
2055 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl); in ParseCXXCatchBlock()
2071 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.get()); in ParseCXXCatchBlock()
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DStmt.cpp673 if (ExceptionDecl) in getCaughtType()
674 return ExceptionDecl->getType(); in getCaughtType()
/minix3/external/bsd/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp1145 S->ExceptionDecl = ReadDeclAs<VarDecl>(Record, Idx); in VisitCXXCatchStmt()