HomeSort by relevance Sort by last modified time
    Searched refs:test_func (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/libcxx/test/std/depr/depr.lib.binders/depr.lib.bind.1st/
bind1st.pass.cpp 19 #include "../test_func.h"
23 assert(std::bind1st(test_func(1), 5)(10.) == -5.);
  /external/libcxx/test/std/depr/depr.lib.binders/depr.lib.bind.2nd/
bind2nd.pass.cpp 19 #include "../test_func.h"
23 assert(std::bind2nd(test_func(1), 5)(10) == 5.);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.lib.binders/depr.lib.bind.1st/
bind1st.pass.cpp 19 #include "../test_func.h"
23 assert(std::bind1st(test_func(1), 5)(10.) == -5.);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.lib.binders/depr.lib.bind.2nd/
bind2nd.pass.cpp 19 #include "../test_func.h"
23 assert(std::bind2nd(test_func(1), 5)(10) == 5.);
  /external/libcxx/test/std/depr/depr.lib.binders/depr.lib.binder.1st/
binder1st.pass.cpp 30 #include "../test_func.h"
33 : public std::binder1st<test_func>
35 typedef std::binder1st<test_func> base;
37 test() : std::binder1st<test_func>(test_func(2), 30) {}
42 std::unary_function<test_func::second_argument_type,
43 test_func::result_type>,
  /external/libcxx/test/std/depr/depr.lib.binders/depr.lib.binder.2nd/
binder2nd.pass.cpp 30 #include "../test_func.h"
33 : public std::binder2nd<test_func>
35 typedef std::binder2nd<test_func> base;
37 test() : std::binder2nd<test_func>(test_func(3), 4.5) {}
42 std::unary_function<test_func::first_argument_type,
43 test_func::result_type>,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.lib.binders/depr.lib.binder.1st/
binder1st.pass.cpp 30 #include "../test_func.h"
33 : public std::binder1st<test_func>
35 typedef std::binder1st<test_func> base;
37 test() : std::binder1st<test_func>(test_func(2), 30) {}
42 std::unary_function<test_func::second_argument_type,
43 test_func::result_type>,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.lib.binders/depr.lib.binder.2nd/
binder2nd.pass.cpp 30 #include "../test_func.h"
33 : public std::binder2nd<test_func>
35 typedef std::binder2nd<test_func> base;
37 test() : std::binder2nd<test_func>(test_func(3), 4.5) {}
42 std::unary_function<test_func::first_argument_type,
43 test_func::result_type>,
  /development/ndk/tests/dlclose-destruction/jni/
main.c 10 test_func_t test_func; local
19 test_func = dlsym(lib, "test1_set");
20 if (test_func == NULL) {
26 test_func(&x);
  /bionic/tests/
buffer_tests.h 24 size_t max_test_size, void (*test_func)(uint8_t*, size_t),
28 size_t max_test_size, void (*test_func)(uint8_t*, uint8_t*, size_t),
36 void RunSingleBufferOverreadTest(void (*test_func)(uint8_t*, size_t));
38 void RunSrcDstBufferOverreadTest(void (*test_func)(uint8_t*, uint8_t*, size_t));
buffer_tests.cpp 231 size_t max_test_size, void (*test_func)(uint8_t*, size_t),
253 test_func(buf_align, len);
263 size_t max_test_size, void (*test_func)(uint8_t*, uint8_t*, size_t),
289 test_func(src_align, dst_align, len);
351 void RunSingleBufferOverreadTest(void (*test_func)(uint8_t*, size_t)) {
366 test_func(buf, i);
372 void RunSrcDstBufferOverreadTest(void (*test_func)(uint8_t*, uint8_t*, size_t)) {
391 test_func(src, dst, j);
  /external/libunwind/tests/
ia64-test-readonly-asm.S 28 .global test_func
29 .proc test_func
30 test_func: label
50 .endp test_func
Gia64-test-readonly.c 41 extern void test_func (void (*) (void));
79 test_func (checker);
  /external/libcxx/test/std/depr/depr.lib.binders/
test_func.h 13 class test_func class
21 explicit test_func(int id) : id_(id) {} function in class:test_func
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.lib.binders/
test_func.h 13 class test_func class
21 explicit test_func(int id) : id_(id) {} function in class:test_func
  /external/mesa3d/src/gallium/drivers/r300/compiler/tests/
unit_test.h 10 void (*test_func)(struct test_result * result); member in struct:test
unit_test.c 13 tests[i].test_func(&tests[i].result);
  /external/vboot_reference/tests/
cgptlib_test.h 17 typedef int (*test_func)(); typedef
  /external/harfbuzz_ng/test/api/
hb-test.h 164 hb_test_func_t test_func)
167 g_test_add_func (normal_path, test_func);
175 hb_test_func_t test_func)
178 hb_test_add_func (path, test_func);
186 hb_test_data_func_t test_func)
189 g_test_add_data_func (normal_path, test_data, test_func);
198 hb_test_data_func_t test_func)
201 hb_test_add_data_func (path, test_data, test_func);
  /frameworks/base/tests/backup/
backup_helper_test.cpp 28 typedef int (*test_func)(); typedef
32 test_func func;
  /ndk/tests/device/test-gnustl-full/unit/
unary_test.cpp 60 bool test_func(int param) { function
67 int* p = find_if((int*)array, (int*)array + 3, not1(ptr_fun(test_func)));
  /ndk/tests/device/test-stlport/unit/
unary_test.cpp 60 bool test_func(int param) { function
67 int* p = find_if((int*)array, (int*)array + 3, not1(ptr_fun(test_func)));
  /tools/test/connectivity/acts/framework/tests/
acts_base_class_test.py 51 def test_func(self): member in class:ActsBaseClassTest.test_current_test_case_name.MockBaseTest
52 asserts.assert_true(self.current_test_name == "test_func", ("Got "
56 bt_cls.run(test_names=["test_func"])
58 self.assertEqual(actual_record.test_name, "test_func")
146 bt_cls.run(test_names=["test_func"])
299 def test_func(self): member in class:ActsBaseClassTest.test_uncaught_exception.MockBaseTest
303 bt_cls.run(test_names=["test_func"])
305 self.assertEqual(actual_record.test_name, "test_func")
311 def test_func(self): member in class:ActsBaseClassTest.test_fail.MockBaseTest
315 bt_cls.run(test_names=["test_func"])
323 def test_func(self): member in class:ActsBaseClassTest.test_assert_true.MockBaseTest
336 def test_func(self): member in class:ActsBaseClassTest.test_assert_equal_pass.MockBaseTest
347 def test_func(self): member in class:ActsBaseClassTest.test_assert_equal_fail.MockBaseTest
358 def test_func(self): member in class:ActsBaseClassTest.test_assert_equal_fail_with_msg.MockBaseTest
371 def test_func(self): member in class:ActsBaseClassTest.test_assert_raises_pass.MockBaseTest
383 def test_func(self): member in class:ActsBaseClassTest.test_assert_raises_fail_with_noop.MockBaseTest
395 def test_func(self): member in class:ActsBaseClassTest.test_assert_raises_fail_with_wrong_error.MockBaseTest
407 def test_func(self): member in class:ActsBaseClassTest.test_assert_raises_regex_pass.MockBaseTest
422 def test_func(self): member in class:ActsBaseClassTest.test_assert_raises_fail_with_noop.MockBaseTest
438 def test_func(self): member in class:ActsBaseClassTest.test_assert_raises_fail_with_wrong_regex.MockBaseTest
455 def test_func(self): member in class:ActsBaseClassTest.test_assert_raises_fail_with_wrong_error.MockBaseTest
470 def test_func(self): member in class:ActsBaseClassTest.test_explicit_pass.MockBaseTest
483 def test_func(self): member in class:ActsBaseClassTest.test_implicit_pass.MockBaseTest
494 def test_func(self): member in class:ActsBaseClassTest.test_skip.MockBaseTest
506 def test_func(self): member in class:ActsBaseClassTest.test_skip_if.MockBaseTest
594 def test_func(self): member in class:ActsBaseClassTest.test_generated_tests.MockBaseTest
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_arit.c 296 LLVMValueRef test_func; local
313 test_func = build_unary_test_func(gallivm, test);
317 test_func_jit = (unary_func_t) gallivm_jit_function(gallivm, test_func);
354 gallivm_free_function(gallivm, test_func, test_func_jit);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
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; } function in class:boost::unit_test::test_case
253 make_test_case( callback0<> const& test_func, const_string tc_name )
255 return new test_case( ut_detail::normalize_test_case_name( tc_name ), test_func );

Completed in 262 milliseconds

1 2 3