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(0), HandlerBlock(0) {}
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.cpp2579 Decl *ExceptionDecl = 0; local
2592 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl);
2608 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.take());
/external/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp831 VarDecl *RebuildExceptionDecl(VarDecl *ExceptionDecl,
839 VarDecl *RebuildObjCExceptionDecl(VarDecl *ExceptionDecl,
1032 TemplateInstantiator::RebuildExceptionDecl(VarDecl *ExceptionDecl, argument
1037 VarDecl *Var = inherited::RebuildExceptionDecl(ExceptionDecl, Declarator,
1040 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var);
1044 VarDecl *TemplateInstantiator::RebuildObjCExceptionDecl(VarDecl *ExceptionDecl, argument
1047 VarDecl *Var = inherited::RebuildObjCExceptionDecl(ExceptionDecl, TSInfo, T);
1049 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var);
H A DTreeTransform.h1235 VarDecl *RebuildObjCExceptionDecl(VarDecl *ExceptionDecl, argument
1238 ExceptionDecl->getInnerLocStart(),
1239 ExceptionDecl->getLocation(),
1240 ExceptionDecl->getIdentifier());
1360 VarDecl *RebuildExceptionDecl(VarDecl *ExceptionDecl, argument
1377 VarDecl *ExceptionDecl,
1379 return Owned(new (getSema().Context) CXXCatchStmt(CatchLoc, ExceptionDecl,
5975 VarDecl *ExceptionDecl = S->getExceptionDecl(); local
5977 ExceptionDecl->getTypeSourceInfo());
5981 Var = getDerived().RebuildExceptionDecl(ExceptionDecl,
1376 RebuildCXXCatchStmt(SourceLocation CatchLoc, VarDecl *ExceptionDecl, Stmt *Handler) argument
[all...]

Completed in 193 milliseconds