/third_party/boost/libs/thread/test/sync/mutual_exclusion/with_lock_guard/ |
D | with_lock_guard_bind.cpp | 28 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/ |
D | forward_adapter.cpp | 110 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()
|
D | lightweight_forward_adapter.cpp | 111 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/ |
D | function_arity.cpp | 16 typedef C (&func_ref)(int,int); typedef 25 BOOST_MPL_ASSERT_RELATION( ::boost::function_types::function_arity<func_ref>::value, ==, 2 );
|
D | components.cpp | 21 typedef C (&func_ref)(int,int); typedef 37 mpl::equal< ft::components<func_ref>::types, mpl::vector<C,int,int> >
|
D | parameter_types.cpp | 22 typedef C (&func_ref)(); typedef 38 mpl::equal< ft::parameter_types<func_ref>, mpl::vector<> >
|
D | result_type.cpp | 22 typedef C (&func_ref)(); typedef 52 boost::is_same<ft::result_type<func_ref>::type,C>
|
/third_party/boost/libs/function_types/test/classification/ |
D | is_function.cpp | 16 typedef void (&func_ref)(); typedef 33 ft::is_function< func_ref >
|
D | is_function_pointer.cpp | 16 typedef void (&func_ref)(); typedef 33 ft::is_function_pointer< func_ref >
|
D | is_callable_builtin.cpp | 16 typedef void (&func_ref)(); typedef 32 ft::is_callable_builtin< func_ref >
|
D | is_function_reference.cpp | 16 typedef void (&func_ref)(); typedef 33 ft::is_function_reference< func_ref >
|
D | is_nonmember_callable_builtin.cpp | 16 typedef void (&func_ref)(); typedef 33 ft::is_nonmember_callable_builtin< func_ref >
|
D | is_member_pointer.cpp | 16 typedef void (&func_ref)(); typedef 34 ft::is_member_pointer< func_ref >
|
D | is_member_object_pointer.cpp | 16 typedef void (&func_ref)(); typedef 33 ft::is_member_object_pointer< func_ref >
|
D | is_member_function_pointer.cpp | 16 typedef void (&func_ref)(); typedef 34 ft::is_member_function_pointer< func_ref >
|
D | is_variadic.cpp | 18 typedef void (&func_ref)(...); typedef 77 ft::is_callable_builtin< func_ref >
|
/third_party/boost/libs/function_types/example/ |
D | result_of_example.cpp | 40 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/ |
D | checkasm.h | 119 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/ |
D | result_of_test.cpp | 166 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()
|