Searched defs:ExceptionDecl (Results 1 - 5 of 5) sorted by relevance

/external/clang/include/clang/AST/
H A DStmtCXX.h32 VarDecl *ExceptionDecl; member in class:clang::CXXCatchStmt
38 : Stmt(CXXCatchStmtClass), CatchLoc(catchLoc), ExceptionDecl(exDecl),
42 : Stmt(CXXCatchStmtClass), ExceptionDecl(nullptr), HandlerBlock(nullptr) {}
50 VarDecl *getExceptionDecl() const { return ExceptionDecl; }
H A DStmtObjC.h76 VarDecl *ExceptionDecl; member in class:clang::ObjCAtCatchStmt
84 : Stmt(ObjCAtCatchStmtClass), ExceptionDecl(catchVarDecl),
95 return ExceptionDecl;
98 return ExceptionDecl;
100 void setCatchParamDecl(VarDecl *D) { ExceptionDecl = D; }
/external/clang/lib/Parse/
H A DParseStmt.cpp2048 Decl *ExceptionDecl = nullptr; local
2061 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl);
2077 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.get());
/external/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp746 VarDecl *RebuildExceptionDecl(VarDecl *ExceptionDecl,
754 VarDecl *RebuildObjCExceptionDecl(VarDecl *ExceptionDecl,
970 TemplateInstantiator::RebuildExceptionDecl(VarDecl *ExceptionDecl, argument
975 VarDecl *Var = inherited::RebuildExceptionDecl(ExceptionDecl, Declarator,
978 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var);
982 VarDecl *TemplateInstantiator::RebuildObjCExceptionDecl(VarDecl *ExceptionDecl, argument
985 VarDecl *Var = inherited::RebuildObjCExceptionDecl(ExceptionDecl, TSInfo, T);
987 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var);
H A DTreeTransform.h1258 VarDecl *RebuildObjCExceptionDecl(VarDecl *ExceptionDecl, argument
1261 ExceptionDecl->getInnerLocStart(),
1262 ExceptionDecl->getLocation(),
1263 ExceptionDecl->getIdentifier());
1559 VarDecl *RebuildExceptionDecl(VarDecl *ExceptionDecl, argument
1576 VarDecl *ExceptionDecl,
1578 return Owned(new (getSema().Context) CXXCatchStmt(CatchLoc, ExceptionDecl,
6114 if (VarDecl *ExceptionDecl = S->getExceptionDecl()) {
6116 getDerived().TransformType(ExceptionDecl->getTypeSourceInfo());
6121 ExceptionDecl,
1575 RebuildCXXCatchStmt(SourceLocation CatchLoc, VarDecl *ExceptionDecl, Stmt *Handler) argument
[all...]

Completed in 376 milliseconds