Home
last modified time | relevance | path

Searched refs:func_ref (Results 1 – 19 of 19) sorted by relevance

/third_party/boost/libs/thread/test/sync/mutual_exclusion/with_lock_guard/
Dwith_lock_guard_bind.cpp28 int func_ref(int& a) const { in func_ref() function in Foo
33 void func_ref(int& a, int& b, int* c) const { in func_ref() function in Foo
58 boost::bind(&Foo::func_ref, foo, boost::ref(a)) in test_bind()
68 m, boost::bind(&Foo::func_ref, boo, boost::ref(a), boost::ref(b), &c) in test_bind()
93 int func_ref(int& a) { in func_ref() function in Boo
98 void func_ref(int& a, int& b, int* c) { in func_ref() function in Boo
123 boost::bind(&Boo::func_ref, boo, boost::ref(a)) in test_bind_non_const()
133 m, boost::bind(&Boo::func_ref, foo, boost::ref(a), boost::ref(b), &c) in test_bind_non_const()
/third_party/boost/libs/functional/forward/test/
Dforward_adapter.cpp110 forward_adapter< test_func<noncopyable> & > func_ref(f); in main() local
117 BOOST_TEST( type_of( func_ref(x,1) ) == long_ ); in main()
125 BOOST_TEST( func_ref(x,1) == -8 ); in main()
Dlightweight_forward_adapter.cpp111 lightweight_forward_adapter< test_func<noncopyable> & > func_ref(f); in main() local
118 BOOST_TEST( type_of( func_ref(x,1) ) == long_ ); in main()
126 BOOST_TEST( func_ref(x,1) == -8 ); in main()
/third_party/boost/libs/function_types/test/decomposition/
Dfunction_arity.cpp16 typedef C (&func_ref)(int,int); typedef
25 BOOST_MPL_ASSERT_RELATION( ::boost::function_types::function_arity<func_ref>::value, ==, 2 );
Dcomponents.cpp21 typedef C (&func_ref)(int,int); typedef
37 mpl::equal< ft::components<func_ref>::types, mpl::vector<C,int,int> >
Dparameter_types.cpp22 typedef C (&func_ref)(); typedef
38 mpl::equal< ft::parameter_types<func_ref>, mpl::vector<> >
Dresult_type.cpp22 typedef C (&func_ref)(); typedef
52 boost::is_same<ft::result_type<func_ref>::type,C>
/third_party/boost/libs/function_types/test/classification/
Dis_function.cpp16 typedef void (&func_ref)(); typedef
33 ft::is_function< func_ref >
Dis_function_pointer.cpp16 typedef void (&func_ref)(); typedef
33 ft::is_function_pointer< func_ref >
Dis_callable_builtin.cpp16 typedef void (&func_ref)(); typedef
32 ft::is_callable_builtin< func_ref >
Dis_function_reference.cpp16 typedef void (&func_ref)(); typedef
33 ft::is_function_reference< func_ref >
Dis_nonmember_callable_builtin.cpp16 typedef void (&func_ref)(); typedef
33 ft::is_nonmember_callable_builtin< func_ref >
Dis_member_pointer.cpp16 typedef void (&func_ref)(); typedef
34 ft::is_member_pointer< func_ref >
Dis_member_object_pointer.cpp16 typedef void (&func_ref)(); typedef
33 ft::is_member_object_pointer< func_ref >
Dis_member_function_pointer.cpp16 typedef void (&func_ref)(); typedef
34 ft::is_member_function_pointer< func_ref >
Dis_variadic.cpp18 typedef void (&func_ref)(...); typedef
77 ft::is_callable_builtin< func_ref >
/third_party/boost/libs/function_types/example/
Dresult_of_example.cpp40 typedef int (&func_ref)(float, double); in main() typedef
53 BOOST_STATIC_ASSERT((is_same<e::result_of<func_ref(char, float)>::type, int>::value)); in main()
/third_party/ffmpeg/tests/checkasm/
Dcheckasm.h119 static av_unused void *func_ref, *func_new; variable
124 #define check_func(func, ...) (func_ref = checkasm_check_func((func_new = func), __VA_ARGS__))
139 #define call_ref(...) ((func_type *)func_ref)(__VA_ARGS__)
/third_party/boost/libs/utility/test/
Dresult_of_test.cpp166 typedef int (&func_ref)(float, double); in main() typedef
228 BOOST_STATIC_ASSERT((is_same<result_of<func_ref(char, float)>::type, int>::value)); in main()
242 BOOST_STATIC_ASSERT((is_same<tr1_result_of<func_ref(char, float)>::type, int>::value)); in main()
255 BOOST_STATIC_ASSERT((is_same<tr1_result_of<func_ref(void)>::type, int>::value)); in main()