HomeSort by relevance Sort by last modified time
    Searched full:mem_fun (Results 1 - 25 of 88) sorted by null

1 2 3 4

  /external/stlport/test/unit/
mfunptr_test.cpp 92 // mem_fun
94 mem_fun(&Class::f0)(&obj);
95 mem_fun(&Class::f1)(&obj, s1);
98 mem_fun(&Class::vf0)(&obj);
99 mem_fun(&Class::vf1)(&obj, s1);
102 // mem_fun (const)
104 mem_fun(&Class::f0c)(&objc);
105 mem_fun(&Class::f1c)(&objc, s1);
108 mem_fun(&Class::vf0c)(&objc);
109 mem_fun(&Class::vf1c)(&objc, s1)
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
mfunptr_test.cpp 92 // mem_fun
94 mem_fun(&Class::f0)(&obj);
95 mem_fun(&Class::f1)(&obj, s1);
98 mem_fun(&Class::vf0)(&obj);
99 mem_fun(&Class::vf1)(&obj, s1);
102 // mem_fun (const)
104 mem_fun(&Class::f0c)(&objc);
105 mem_fun(&Class::f1c)(&objc, s1);
108 mem_fun(&Class::vf0c)(&objc);
109 mem_fun(&Class::vf1c)(&objc, s1)
    [all...]
  /ndk/tests/device/test-stlport/unit/
mfunptr_test.cpp 92 // mem_fun
94 mem_fun(&Class::f0)(&obj);
95 mem_fun(&Class::f1)(&obj, s1);
98 mem_fun(&Class::vf0)(&obj);
99 mem_fun(&Class::vf1)(&obj, s1);
102 // mem_fun (const)
104 mem_fun(&Class::f0c)(&objc);
105 mem_fun(&Class::f1c)(&objc, s1);
108 mem_fun(&Class::vf0c)(&objc);
109 mem_fun(&Class::vf1c)(&objc, s1)
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
mem_fn.hpp 11 // mem_fn.hpp - a generalization of std::mem_fun[_ref]
  /external/libcxx/test/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/
const_mem_fun.pass.cpp 14 // mem_fun(S (T::*f)() const);
30 assert(std::mem_fun(&A::a3)(&a) == 1);
const_mem_fun1.pass.cpp 14 // mem_fun(S (T::*f)(A) const);
30 assert(std::mem_fun(&A::a4)(&a, 6) == 5);
mem_fun.pass.cpp 14 // mem_fun(S (T::*f)());
30 assert(std::mem_fun(&A::a1)(&a) == 5);
mem_fun1.pass.cpp 14 // mem_fun(S (T::*f)(A));
30 assert(std::mem_fun(&A::a2)(&a, 5) == 6);
Android.mk 31 test_name := depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/mem_fun
32 test_src := mem_fun.pass.cpp
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/
const_mem_fun.pass.cpp 14 // mem_fun(S (T::*f)() const);
30 assert(std::mem_fun(&A::a3)(&a) == 1);
const_mem_fun1.pass.cpp 14 // mem_fun(S (T::*f)(A) const);
30 assert(std::mem_fun(&A::a4)(&a, 6) == 5);
mem_fun.pass.cpp 14 // mem_fun(S (T::*f)());
30 assert(std::mem_fun(&A::a1)(&a) == 5);
mem_fun1.pass.cpp 14 // mem_fun(S (T::*f)(A));
30 assert(std::mem_fun(&A::a2)(&a, 5) == 6);
  /external/chromium_org/storage/browser/quota/
quota_task.cc 64 std::mem_fun(&QuotaTask::Abort));
  /external/chromium_org/chrome/browser/chromeos/dbus/
service_provider_test_helper.cc 64 AllOf(ResultOf(std::mem_fun(&dbus::MethodCall::GetInterface),
66 ResultOf(std::mem_fun(&dbus::MethodCall::GetMember),
  /external/stlport/stlport/stl/
_function_adaptors.h 55 // ignore it by using the helper function mem_fun and mem_fun_ref,
713 // Mem_fun adaptor helper functions. There are only two:
714 // mem_fun and mem_fun_ref. (mem_fun1 and mem_fun1_ref
720 mem_fun(_Result (_Tp::*__f)()) { return mem_fun_t<_Result,_Tp>(__f); }
724 mem_fun(_Result (_Tp::*__f)() const) { return const_mem_fun_t<_Result,_Tp>(__f); }
736 mem_fun(_Result (_Tp::*__f)(_Arg)) { return mem_fun1_t<_Result,_Tp,_Arg>(__f); }
740 mem_fun(_Result (_Tp::*__f)(_Arg) const) { return const_mem_fun1_t<_Result,_Tp,_Arg>(__f); }
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_function_adaptors.h 55 // ignore it by using the helper function mem_fun and mem_fun_ref,
713 // Mem_fun adaptor helper functions. There are only two:
714 // mem_fun and mem_fun_ref. (mem_fun1 and mem_fun1_ref
720 mem_fun(_Result (_Tp::*__f)()) { return mem_fun_t<_Result,_Tp>(__f); }
724 mem_fun(_Result (_Tp::*__f)() const) { return const_mem_fun_t<_Result,_Tp>(__f); }
736 mem_fun(_Result (_Tp::*__f)(_Arg)) { return mem_fun1_t<_Result,_Tp,_Arg>(__f); }
740 mem_fun(_Result (_Tp::*__f)(_Arg) const) { return const_mem_fun1_t<_Result,_Tp,_Arg>(__f); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/bits/
stl_function.h 534 * ignore it by using the helper function mem_fun and mem_fun_ref,
683 // Mem_fun adaptor helper functions. There are only two:
684 // mem_fun and mem_fun_ref.
687 mem_fun(_Ret (_Tp::*__f)())
692 mem_fun(_Ret (_Tp::*__f)() const)
707 mem_fun(_Ret (_Tp::*__f)(_Arg))
712 mem_fun(_Ret (_Tp::*__f)(_Arg) const)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stl_function.h 534 * ignore it by using the helper function mem_fun and mem_fun_ref,
683 // Mem_fun adaptor helper functions. There are only two:
684 // mem_fun and mem_fun_ref.
687 mem_fun(_Ret (_Tp::*__f)())
692 mem_fun(_Ret (_Tp::*__f)() const)
707 mem_fun(_Ret (_Tp::*__f)(_Arg))
712 mem_fun(_Ret (_Tp::*__f)(_Arg) const)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_function.h 534 * ignore it by using the helper function mem_fun and mem_fun_ref,
683 // Mem_fun adaptor helper functions. There are only two:
684 // mem_fun and mem_fun_ref.
687 mem_fun(_Ret (_Tp::*__f)())
692 mem_fun(_Ret (_Tp::*__f)() const)
707 mem_fun(_Ret (_Tp::*__f)(_Arg))
712 mem_fun(_Ret (_Tp::*__f)(_Arg) const)
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_function.h 516 * ignore it by using the helper function mem_fun and mem_fun_ref,
665 // Mem_fun adaptor helper functions. There are only two:
666 // mem_fun and mem_fun_ref.
669 mem_fun(_Ret (_Tp::*__f)())
674 mem_fun(_Ret (_Tp::*__f)() const)
689 mem_fun(_Ret (_Tp::*__f)(_Arg))
694 mem_fun(_Ret (_Tp::*__f)(_Arg) const)
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_function_adaptors.h 55 // ignore it by using the helper function mem_fun and mem_fun_ref,
713 // Mem_fun adaptor helper functions. There are only two:
714 // mem_fun and mem_fun_ref. (mem_fun1 and mem_fun1_ref
720 mem_fun(_Result (_Tp::*__f)()) { return mem_fun_t<_Result,_Tp>(__f); }
724 mem_fun(_Result (_Tp::*__f)() const) { return const_mem_fun_t<_Result,_Tp>(__f); }
736 mem_fun(_Result (_Tp::*__f)(_Arg)) { return mem_fun1_t<_Result,_Tp,_Arg>(__f); }
740 mem_fun(_Result (_Tp::*__f)(_Arg) const) { return const_mem_fun1_t<_Result,_Tp,_Arg>(__f); }
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_function.h 516 * ignore it by using the helper function mem_fun and mem_fun_ref,
665 // Mem_fun adaptor helper functions. There are only two:
666 // mem_fun and mem_fun_ref.
669 mem_fun(_Ret (_Tp::*__f)())
674 mem_fun(_Ret (_Tp::*__f)() const)
689 mem_fun(_Ret (_Tp::*__f)(_Arg))
694 mem_fun(_Ret (_Tp::*__f)(_Arg) const)
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_function_adaptors.h 55 // ignore it by using the helper function mem_fun and mem_fun_ref,
713 // Mem_fun adaptor helper functions. There are only two:
714 // mem_fun and mem_fun_ref. (mem_fun1 and mem_fun1_ref
720 mem_fun(_Result (_Tp::*__f)()) { return mem_fun_t<_Result,_Tp>(__f); }
724 mem_fun(_Result (_Tp::*__f)() const) { return const_mem_fun_t<_Result,_Tp>(__f); }
736 mem_fun(_Result (_Tp::*__f)(_Arg)) { return mem_fun1_t<_Result,_Tp,_Arg>(__f); }
740 mem_fun(_Result (_Tp::*__f)(_Arg) const) { return const_mem_fun1_t<_Result,_Tp,_Arg>(__f); }
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_function.h 516 * ignore it by using the helper function mem_fun and mem_fun_ref,
665 // Mem_fun adaptor helper functions. There are only two:
666 // mem_fun and mem_fun_ref.
669 mem_fun(_Ret (_Tp::*__f)())
674 mem_fun(_Ret (_Tp::*__f)() const)
689 mem_fun(_Ret (_Tp::*__f)(_Arg))
694 mem_fun(_Ret (_Tp::*__f)(_Arg) const)

Completed in 824 milliseconds

1 2 3 4