Home | History | Annotate | Download | only in gmock

Lines Matching refs:Tup

834   template <typename Tup, size_t kRemainingSize>
836 OutIter operator() (Func f, const Tup& t, OutIter out) const {
838 return IterateOverTuple<Tup, kRemainingSize - 1>()(f, t, out);
841 template <typename Tup>
842 struct IterateOverTuple<Tup, 0> {
843 OutIter operator() (Func /* f */, const Tup& /* t */, OutIter out) const {