Home | History | Annotate | Download | only in tuple.apply

Lines Matching refs:mem1

35     int mem1() { return ++count; }
44 int mem1(int x) { return count += x; }
52 int mem1(int x, int y) { return count += (x + y); }
97 mem1_t mem1 = &T::mem1;
109 assert(1 == std::apply(mem1, t));
117 assert(1 == std::apply(mem1, t));
125 assert(1 == std::apply(mem1, t));
133 assert(1 == std::apply(mem1, t));
209 mem1_t mem1 = &T::mem1;
218 assert(2 == std::apply(mem1, t));
226 assert(3 == std::apply(mem1, t));
234 assert(4 == std::apply(mem1, t));
242 assert(5 == std::apply(mem1, t));
294 mem1_t mem1 = &T::mem1;
303 assert(2 == std::apply(mem1, t));
311 assert(3 == std::apply(mem1, t));
319 assert(4 == std::apply(mem1, t));
327 assert(5 == std::apply(mem1, t));