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

1 2

  /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)) {
388 test_func(src, dst, i);
  /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