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

Lines Matching refs:bind

15 //   unspecified bind(Fn, Types...);
17 // unspecified bind(Fn, Types...);
60 test(std::bind(f));
61 test(std::bind(&f));
62 test(std::bind(A_void_0()));
63 test_const(std::bind(A_void_0()));
65 test(std::bind<void>(f));
66 test(std::bind<void>(&f));
67 test(std::bind<void>(A_void_0()));
68 test_const(std::bind<void>(A_void_0()));
70 test(std::bind<void>(g));
71 test(std::bind<void>(&g));
72 test(std::bind<void>(A_int_0()));
73 test_const(std::bind<void>(A_int_0()));