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

/external/clang/include/clang/AST/
H A DStmtCXX.h29 VarDecl *ExceptionDecl; member in class:clang::CXXCatchStmt
35 : Stmt(CXXCatchStmtClass), CatchLoc(catchLoc), ExceptionDecl(exDecl),
39 : Stmt(CXXCatchStmtClass), ExceptionDecl(0), HandlerBlock(0) {}
46 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/Sema/
H A DSemaTemplateInstantiate.cpp790 VarDecl *RebuildExceptionDecl(VarDecl *ExceptionDecl,
798 VarDecl *RebuildObjCExceptionDecl(VarDecl *ExceptionDecl,
959 TemplateInstantiator::RebuildExceptionDecl(VarDecl *ExceptionDecl, argument
964 VarDecl *Var = inherited::RebuildExceptionDecl(ExceptionDecl, Declarator,
967 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var);
971 VarDecl *TemplateInstantiator::RebuildObjCExceptionDecl(VarDecl *ExceptionDecl, argument
974 VarDecl *Var = inherited::RebuildObjCExceptionDecl(ExceptionDecl, TSInfo, T);
976 getSema().CurrentInstantiationScope->InstantiatedLocal(ExceptionDecl, Var);
H A DTreeTransform.h1198 VarDecl *RebuildObjCExceptionDecl(VarDecl *ExceptionDecl, argument
1201 ExceptionDecl->getInnerLocStart(),
1202 ExceptionDecl->getLocation(),
1203 ExceptionDecl->getIdentifier());
1294 VarDecl *RebuildExceptionDecl(VarDecl *ExceptionDecl, argument
1311 VarDecl *ExceptionDecl,
1313 return Owned(new (getSema().Context) CXXCatchStmt(CatchLoc, ExceptionDecl,
5812 VarDecl *ExceptionDecl = S->getExceptionDecl(); local
5814 ExceptionDecl->getTypeSourceInfo());
5818 Var = getDerived().RebuildExceptionDecl(ExceptionDecl,
1310 RebuildCXXCatchStmt(SourceLocation CatchLoc, VarDecl *ExceptionDecl, Stmt *Handler) argument
[all...]
/external/clang/lib/AST/
H A DStmt.cpp519 if (ExceptionDecl)
520 return ExceptionDecl->getType();
/external/clang/lib/Parse/
H A DParseStmt.cpp2141 Decl *ExceptionDecl = 0; local
2148 ExceptionDecl = Actions.ActOnExceptionDeclarator(getCurScope(), ExDecl);
2164 return Actions.ActOnCXXCatchBlock(CatchLoc, ExceptionDecl, Block.take());
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp1039 S->ExceptionDecl = ReadDeclAs<VarDecl>(Record, Idx);

Completed in 84 milliseconds