Home
last modified time | relevance | path

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/
Dbinder2nd.pass.cpp33 : 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/
Dbinder1st.pass.cpp33 : 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/
Dtest_func.h13 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/
Dbind1st.pass.cpp23 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/
Dbind2nd.pass.cpp23 assert(std::bind2nd(test_func(1), 5)(10) == 5.); in main()
/ndk/tests/device/test-stlport/unit/
Dunary_test.cpp60 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/
Dunary_test.cpp60 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/
Dunit_test_suite_impl.hpp108 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/
Dunit_test_monitor.ipp69 execute( callback0<int>( zero_return_wrapper( tc.test_func() ) ) );
Dunit_test_suite.ipp106 test_case::test_case( const_string name, callback0<> const& test_func )
108 , m_test_func( test_func )