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

1 2 3

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.function.objects/depr.adaptors/depr.function.pointer.adaptors/
ptr_fun1.pass.cpp 14 // ptr_fun(Result (*f)(Arg));
24 assert(std::ptr_fun(unary_f)(36) == -35.5);
ptr_fun2.pass.cpp 14 // ptr_fun(Result (*f)(Arg1, Arg2));
24 assert(std::ptr_fun(binary_f)(36, 27) == 9.75);
  /external/eigen/doc/examples/
class_CwiseUnaryOp_ptrfun.cpp 18 cout << m1 << endl << "becomes: " << endl << m1.unaryExpr(ptr_fun(ramp)) << endl;
  /external/stlport/test/unit/
mfunptr_test.cpp 76 // ptr_fun
78 ptr_fun(f1)(s1);
79 ptr_fun(f2)(s1, s2);
81 ptr_fun(f1c)(s1);
82 ptr_fun(f2c)(s1, s2);
85 ptr_fun(vf1)(s1);
86 ptr_fun(vf2)(s1, s2);
88 ptr_fun(vf1c)(s1);
89 ptr_fun(vf2c)(s1, s2);
foreach_test.cpp 39 for_each(numbers, numbers + 10, ptr_fun(increase));
61 for_each(v1.begin(), v1.end(), ptr_fun(sqr) );
ptr2_test.cpp 62 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, ptr_fun(sum));
81 int* p = find_if((int*)array, (int*)array + 3, ptr_fun(even));
bind_test.cpp 105 transform(array, array + 3, array, bind2nd(ptr_fun(test_func1), 1));
106 transform(array, array + 3, array, bind1st(ptr_fun(test_func1), -1));
111 transform(array, array + 3, array, bind2nd(ptr_fun(test_func2), 10));
fadapter.h 33 pointer_to_void_function<Result> ptr_fun(Result (*x)()) { function
unary_test.cpp 67 int* p = find_if((int*)array, (int*)array + 3, not1(ptr_fun(test_func)));
  /ndk/tests/device/test-gnustl-full/unit/
mfunptr_test.cpp 76 // ptr_fun
78 ptr_fun(f1)(s1);
79 ptr_fun(f2)(s1, s2);
81 ptr_fun(f1c)(s1);
82 ptr_fun(f2c)(s1, s2);
85 ptr_fun(vf1)(s1);
86 ptr_fun(vf2)(s1, s2);
88 ptr_fun(vf1c)(s1);
89 ptr_fun(vf2c)(s1, s2);
foreach_test.cpp 39 for_each(numbers, numbers + 10, ptr_fun(increase));
61 for_each(v1.begin(), v1.end(), ptr_fun(sqr) );
ptr2_test.cpp 62 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, ptr_fun(sum));
81 int* p = find_if((int*)array, (int*)array + 3, ptr_fun(even));
bind_test.cpp 105 transform(array, array + 3, array, bind2nd(ptr_fun(test_func1), 1));
106 transform(array, array + 3, array, bind1st(ptr_fun(test_func1), -1));
111 transform(array, array + 3, array, bind2nd(ptr_fun(test_func2), 10));
fadapter.h 33 pointer_to_void_function<Result> ptr_fun(Result (*x)()) { function
unary_test.cpp 67 int* p = find_if((int*)array, (int*)array + 3, not1(ptr_fun(test_func)));
  /ndk/tests/device/test-stlport/unit/
mfunptr_test.cpp 76 // ptr_fun
78 ptr_fun(f1)(s1);
79 ptr_fun(f2)(s1, s2);
81 ptr_fun(f1c)(s1);
82 ptr_fun(f2c)(s1, s2);
85 ptr_fun(vf1)(s1);
86 ptr_fun(vf2)(s1, s2);
88 ptr_fun(vf1c)(s1);
89 ptr_fun(vf2c)(s1, s2);
foreach_test.cpp 39 for_each(numbers, numbers + 10, ptr_fun(increase));
61 for_each(v1.begin(), v1.end(), ptr_fun(sqr) );
ptr2_test.cpp 62 transform((int*)input1, (int*)input1 + 4, (int*)input2, (int*)output, ptr_fun(sum));
81 int* p = find_if((int*)array, (int*)array + 3, ptr_fun(even));
bind_test.cpp 105 transform(array, array + 3, array, bind2nd(ptr_fun(test_func1), 1));
106 transform(array, array + 3, array, bind1st(ptr_fun(test_func1), -1));
111 transform(array, array + 3, array, bind2nd(ptr_fun(test_func2), 10));
fadapter.h 33 pointer_to_void_function<Result> ptr_fun(Result (*x)()) { function
unary_test.cpp 67 int* p = find_if((int*)array, (int*)array + 3, not1(ptr_fun(test_func)));
  /external/chromium_org/ash/wm/
mru_window_tracker.cc 69 std::not1(std::ptr_fun(ash::wm::CanActivateWindow)));
  /external/chromium_org/gpu/command_buffer/service/
mailbox_manager.cc 23 mailbox_to_textures_(std::ptr_fun(&MailboxManager::TargetNameLess)) {
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_function.h 410 * The function @c ptr_fun takes a pointer-to-function @c f and constructs
437 ptr_fun(_Result (*__x)(_Arg)) function
463 ptr_fun(_Result (*__x)(_Arg1, _Arg2)) function
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_function.h 416 * The function @c ptr_fun takes a pointer-to-function @c f and constructs
443 ptr_fun(_Result (*__x)(_Arg)) function
469 ptr_fun(_Result (*__x)(_Arg1, _Arg2)) function

Completed in 283 milliseconds

1 2 3