HomeSort by relevance Sort by last modified time
    Searched refs:mem_fun (Results 1 - 22 of 22) sorted by null

  /external/libcxx/test/std/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/
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);
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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/
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);
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);
  /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...]
  /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-linux-glibc2.15-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)
  /external/clang/test/SemaCXX/
for-range-examples.cpp 109 template<typename F> mem_fun_impl<F> mem_fun(F f) { return mem_fun_impl<F>(f); } function in namespace:map_range
146 for (auto a : map(map_range::mem_fun(&T::get<int>), pairs)) {
  /external/clang/include/clang/AST/
DeclContextInternals.h 134 std::mem_fun(&Decl::isFromASTFile)),
  /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/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_function.h 883 * ignore it by using the helper function mem_fun and mem_fun_ref,
1032 // Mem_fun adaptor helper functions. There are only two:
1033 // mem_fun and mem_fun_ref.
1036 mem_fun(_Ret (_Tp::*__f)())
1041 mem_fun(_Ret (_Tp::*__f)() const)
1056 mem_fun(_Ret (_Tp::*__f)(_Arg))
1061 mem_fun(_Ret (_Tp::*__f)(_Arg) const)
  /prebuilts/ndk/current/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); }
  /external/webrtc/webrtc/call/
bitrate_estimator_tests.cc 144 std::mem_fun(&Stream::StopSending));
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 285 std::bind1st(std::mem_fun(&AMDGPUPeepholeOpt::instLevelOptimizations),
    [all...]
  /ndk/tests/device/test-libc++-shared-full/jni/
Android.mk     [all...]
  /ndk/tests/device/test-libc++-static-full/jni/
Android.mk     [all...]

Completed in 409 milliseconds