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

1 2

  /external/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.);
  /external/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/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/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/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/chromium_org/third_party/mesa/src/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/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/chromium_org/ppapi/native_client/tests/nacl_browser/inbrowser_test_runner/
test_runner_ppapi.c 41 int RunTests(int (*test_func)(void)) {
45 return test_func();
47 g_test_func = test_func;
  /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);
  /external/chromium_org/third_party/mesa/src/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);
  /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);
  /external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/
test_interface.cc 103 void RegisterTest(nacl::string test_name, TestFunction test_func) {
104 TestTable::Get()->AddTest(test_name, test_func);
  /external/chromium_org/v8/test/mjsunit/
external-array-no-sse2.js 295 function run_test(test_func, array, expected_result) {
296 for (var i = 0; i < 5; i++) test_func(array, 0);
297 %OptimizeFunctionOnNextCall(test_func);
300 sum = test_func(array, sum);
303 %DeoptimizeFunction(test_func);
304 %ClearFunctionTypeFeedback(test_func);
307 function run_bounds_test(test_func, array, expected_result) {
external-array.js 295 function run_test(test_func, array, expected_result) {
296 for (var i = 0; i < 5; i++) test_func(array, 0);
297 %OptimizeFunctionOnNextCall(test_func);
300 sum = test_func(array, sum);
303 %DeoptimizeFunction(test_func);
304 %ClearFunctionTypeFeedback(test_func);
307 function run_bounds_test(test_func, array, expected_result) {
  /external/e2fsprogs/misc/
badblocks.c 1048 unsigned int (*test_func)(int, blk_t,
1065 test_func = test_ro;
1104 test_func = test_rw;
1110 test_func = test_nd;
1312 bb_count = test_func(dev, last_block, block_size,
    [all...]
  /external/chromium_org/chrome/test/chromedriver/test/
run_py_tests.py     [all...]
  /external/chromium_org/third_party/sqlite/src/
Makefile.vxworks 376 $(TOP)/src/test_func.c \
main.mk 245 $(TOP)/src/test_func.c \

Completed in 374 milliseconds

1 2