Searched refs:test_func (Results 1 – 10 of 10) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.lib.binders/depr.lib.binder.2nd/ |
D | binder2nd.pass.cpp | 33 : public std::binder2nd<test_func> 35 typedef std::binder2nd<test_func> base; 37 test() : std::binder2nd<test_func>(test_func(3), 4.5) {} in test() 42 std::unary_function<test_func::first_argument_type, in do_test() 43 test_func::result_type>, in do_test()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.lib.binders/depr.lib.binder.1st/ |
D | binder1st.pass.cpp | 33 : public std::binder1st<test_func> 35 typedef std::binder1st<test_func> base; 37 test() : std::binder1st<test_func>(test_func(2), 30) {} in test() 42 std::unary_function<test_func::second_argument_type, in do_test() 43 test_func::result_type>, in do_test()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.lib.binders/ |
D | test_func.h | 13 class test_func 21 explicit test_func(int id) : id_(id) {} in test_func() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.lib.binders/depr.lib.bind.1st/ |
D | bind1st.pass.cpp | 23 assert(std::bind1st(test_func(1), 5)(10.) == -5.); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.lib.binders/depr.lib.bind.2nd/ |
D | bind2nd.pass.cpp | 23 assert(std::bind2nd(test_func(1), 5)(10) == 5.); in main()
|
/ndk/tests/device/test-stlport/unit/ |
D | unary_test.cpp | 60 bool test_func(int param) { in test_func() function 67 int* p = find_if((int*)array, (int*)array + 3, not1(ptr_fun(test_func))); in unegate3()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | unary_test.cpp | 60 bool test_func(int param) { in test_func() function 67 int* p = find_if((int*)array, (int*)array + 3, not1(ptr_fun(test_func))); in unegate3()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/ |
D | unit_test_suite_impl.hpp | 108 test_case( const_string tc_name, callback0<> const& test_func ); 111 callback0<> const& test_func() const { return m_test_func; } in test_func() function in boost::unit_test::test_case 253 make_test_case( callback0<> const& test_func, const_string tc_name ) in make_test_case() argument 255 return new test_case( ut_detail::normalize_test_case_name( tc_name ), test_func ); in make_test_case()
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/ |
D | unit_test_monitor.ipp | 69 execute( callback0<int>( zero_return_wrapper( tc.test_func() ) ) );
|
D | unit_test_suite.ipp | 106 test_case::test_case( const_string name, callback0<> const& test_func ) 108 , m_test_func( test_func )
|