Home | History | Annotate | Download | only in func.bind.bind

Lines Matching refs:mem1

40     void mem1() {++count;}
88 void (A_void_1::*fp)() = &A_void_1::mem1;
98 void (A_void_1::*fp)() = &A_void_1::mem1;
145 int mem1() {return 3;}
172 assert(std::bind(&A_int_1::mem1, _1)(A_int_1()) == 3);
173 assert(std::bind(&A_int_1::mem1, A_int_1())() == 3);
175 assert(std::bind(&A_int_1::mem1, _1)(&a) == 3);
176 assert(std::bind(&A_int_1::mem1, &a)() == 3);
214 void mem1(int i) {count += i;}
237 std::bind(&A_void_2::mem1, _1, _2)(A_void_2(), 3);
240 std::bind(&A_void_2::mem1, _2, _1)(3, A_void_2());