Home | History | Annotate | Download | only in AST

Lines Matching refs:ParamTys

33          class... ParamTys>
40 static_cast<PTR(CLASS)>(S), std::forward<ParamTys>(P)...)
42 RetTy Visit(PTR(Stmt) S, ParamTys... P) {
116 RetTy Visit ## CLASS(PTR(CLASS) S, ParamTys... P) { DISPATCH(PARENT, PARENT); }
122 RetTy VisitBin ## NAME(PTR(BinaryOperator) S, ParamTys... P) { \
142 RetTy VisitBin ## NAME(PTR(CompoundAssignOperator) S, ParamTys... P) { \
154 RetTy VisitUnary ## NAME(PTR(UnaryOperator) S, ParamTys... P) { \
168 RetTy VisitStmt(PTR(Stmt) Node, ParamTys... P) { return RetTy(); }
179 template<typename ImplClass, typename RetTy=void, typename... ParamTys>
181 : public StmtVisitorBase<make_ptr, ImplClass, RetTy, ParamTys...> {};
188 template<typename ImplClass, typename RetTy=void, typename... ParamTys>
190 : public StmtVisitorBase<make_const_ptr, ImplClass, RetTy, ParamTys...> {};