/external/libcxx/test/std/depr/depr.lib.binders/depr.lib.bind.1st/ |
bind1st.pass.cpp | 14 // bind1st(const Fn& fn, const T& x); 23 assert(std::bind1st(test_func(1), 5)(10.) == -5.);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.lib.binders/depr.lib.bind.1st/ |
bind1st.pass.cpp | 14 // bind1st(const Fn& fn, const T& x); 23 assert(std::bind1st(test_func(1), 5)(10.) == -5.);
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/ |
algorithm.hpp | 20 #include <functional> // std::bind1st 114 if( std::find_if( first2, last2, std::bind1st( pred, *first1 ) ) == last2 ) 164 while( --it1 != first1 && std::find_if( first2, last2, std::bind1st( pred, *it1 ) ) == last2 ) {} 166 return it1 == first1 && std::find_if( first2, last2, std::bind1st( pred, *it1 ) ) == last2 ? last1 : it1; 211 while( --it1 != first1 && std::find_if( first2, last2, std::bind1st( pred, *it1 ) ) != last2 ) {} 213 return it1 == first1 && std::find_if( first2, last2, std::bind1st( pred, *it1 ) ) == last2 ? last1 : it1;
|
/ndk/tests/device/test-gnustl-full/unit/ |
bind_test.cpp | 56 int* p = remove_if((int*)array, (int*)array + 3, bind1st(less<int>(), 2)); 62 for_each((int*)array, (int*)array + 3, bind1st(pre_increment(), 1)); 106 transform(array, array + 3, array, bind1st(ptr_fun(test_func1), -1));
|
/ndk/tests/device/test-stlport/unit/ |
bind_test.cpp | 56 int* p = remove_if((int*)array, (int*)array + 3, bind1st(less<int>(), 2)); 62 for_each((int*)array, (int*)array + 3, bind1st(pre_increment(), 1)); 106 transform(array, array + 3, array, bind1st(ptr_fun(test_func1), -1));
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/backward/ |
binders.h | 76 * The function @c bind1st is provided to save some typing. It takes the 84 * 1.3 from it, and returns the result. (If @c bind1st had been used, 87 * Creator-wrapper functions like @c bind1st are intended to be used in 91 * return value from @c bind1st(std::plus<int>(),5). 97 * supporting functions with any number of arguments. Uses of @c bind1st 131 bind1st(const _Operation& __fn, const _Tp& __x) function
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/backward/ |
binders.h | 76 * The function @c bind1st is provided to save some typing. It takes the 84 * 1.3 from it, and returns the result. (If @c bind1st had been used, 87 * Creator-wrapper functions like @c bind1st are intended to be used in 91 * return value from @c bind1st(std::plus<int>(),5). 97 * supporting functions with any number of arguments. Uses of @c bind1st 131 bind1st(const _Operation& __fn, const _Tp& __x) function
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/backward/ |
binders.h | 76 * The function @c bind1st is provided to save some typing. It takes the 84 * 1.3 from it, and returns the result. (If @c bind1st had been used, 87 * Creator-wrapper functions like @c bind1st are intended to be used in 91 * return value from @c bind1st(std::plus<int>(),5). 97 * supporting functions with any number of arguments. Uses of @c bind1st 131 bind1st(const _Operation& __fn, const _Tp& __x) function
|
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/backward/ |
binders.h | 76 * The function @c bind1st is provided to save some typing. It takes the 84 * 1.3 from it, and returns the result. (If @c bind1st had been used, 87 * Creator-wrapper functions like @c bind1st are intended to be used in 91 * return value from @c bind1st(std::plus<int>(),5). 97 * supporting functions with any number of arguments. Uses of @c bind1st 131 bind1st(const _Operation& __fn, const _Tp& __x) function
|
/external/opencv3/modules/cudev/include/opencv2/cudev/expr/ |
binary_op.hpp | 119 return makeExpr(transformPtr(src, bind1st(functor<T>(), val))); \ 161 return makeExpr(transformPtr(src, bind1st(functor<T>(), val))); \ 191 return makeExpr(transformPtr(src, bind1st(functor<T>(), val))); \ 209 return makeExpr(transformPtr(a.body, bind1st(functor<typename Body::value_type>(), val))); \
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_function.h | 217 bind1st(const _Operation& __fn, const _Tp& __x) { function
|
/prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/ |
_function.h | 217 bind1st(const _Operation& __fn, const _Tp& __x) { function
|
/external/llvm/lib/CodeGen/ |
RegisterPressure.cpp | 355 std::bind1st(std::ptr_fun(containsReg), RegOpers.Defs)); [all...] |
/external/opencv3/modules/core/include/opencv2/core/cuda/ |
functional.hpp | 690 template <typename Op, typename T> __host__ __device__ __forceinline__ binder1st<Op> bind1st(const Op& op, const T& x) function in namespace:cv::cuda::device
|
/external/opencv3/modules/cudev/include/opencv2/cudev/functional/ |
functional.hpp | 822 __host__ __device__ Binder1st<Op> bind1st(const Op& op, const typename Op::first_argument_type& arg1) function in namespace:cv::cudev
|
/external/clang/lib/Sema/ |
Sema.cpp | 717 std::bind1st(std::ptr_fun(ShouldRemoveFromUnused), this)), [all...] |
/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...] |