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

1 2

  /ndk/sources/cxx-stl/llvm-libc++/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++/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.);
  /ndk/sources/cxx-stl/llvm-libc++/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++/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);
  /ndk/sources/cxx-stl/llvm-libc++/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/harfbuzz_ng/test/api/
hb-test.h 167 hb_test_func_t test_func)
170 g_test_add_func (normal_path, test_func);
178 hb_test_func_t test_func)
181 hb_test_add_func (path, test_func);
189 hb_test_data_func_t test_func)
192 g_test_add_data_func (normal_path, test_data, test_func);
201 hb_test_data_func_t test_func)
204 hb_test_add_data_func (path, test_data, test_func);
  /external/stlport/test/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)));
  /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)));