HomeSort by relevance Sort by last modified time
    Searched defs:binary_function (Results 1 - 8 of 8) sorted by null

  /ndk/sources/cxx-stl/stlport/stlport/stl/
_function_base.h 53 struct binary_function { struct
60 ~binary_function() {}
65 struct equal_to : public binary_function<_Tp, _Tp, bool> {
70 struct less : public binary_function<_Tp,_Tp,bool>
114 struct plus : public binary_function<_Tp, _Tp, _Tp> {
119 struct minus : public binary_function<_Tp, _Tp, _Tp> {
134 struct multiplies : public binary_function<_Tp, _Tp, _Tp> {
156 struct _Project1st : public binary_function<_Arg1, _Arg2, _Arg1> {
161 struct _Project2nd : public binary_function<_Arg1, _Arg2, _Arg2> {
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_function_base.h 53 struct binary_function { struct
60 ~binary_function() {}
65 struct equal_to : public binary_function<_Tp, _Tp, bool> {
70 struct less : public binary_function<_Tp,_Tp,bool>
114 struct plus : public binary_function<_Tp, _Tp, _Tp> {
119 struct minus : public binary_function<_Tp, _Tp, _Tp> {
134 struct multiplies : public binary_function<_Tp, _Tp, _Tp> {
156 struct _Project1st : public binary_function<_Arg1, _Arg2, _Arg1> {
161 struct _Project2nd : public binary_function<_Arg1, _Arg2, _Arg2> {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stl_function.h 91 * and @c binary_function. These two classes contain nothing but typedefs,
114 struct binary_function struct
140 struct plus : public binary_function<_Tp, _Tp, _Tp>
149 struct minus : public binary_function<_Tp, _Tp, _Tp>
158 struct multiplies : public binary_function<_Tp, _Tp, _Tp>
167 struct divides : public binary_function<_Tp, _Tp, _Tp>
176 struct modulus : public binary_function<_Tp, _Tp, _Tp>
204 struct equal_to : public binary_function<_Tp, _Tp, bool>
213 struct not_equal_to : public binary_function<_Tp, _Tp, bool>
222 struct greater : public binary_function<_Tp, _Tp, bool
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_function.h 91 * and @c binary_function. These two classes contain nothing but typedefs,
114 struct binary_function struct
140 struct plus : public binary_function<_Tp, _Tp, _Tp>
149 struct minus : public binary_function<_Tp, _Tp, _Tp>
158 struct multiplies : public binary_function<_Tp, _Tp, _Tp>
167 struct divides : public binary_function<_Tp, _Tp, _Tp>
176 struct modulus : public binary_function<_Tp, _Tp, _Tp>
204 struct equal_to : public binary_function<_Tp, _Tp, bool>
213 struct not_equal_to : public binary_function<_Tp, _Tp, bool>
222 struct greater : public binary_function<_Tp, _Tp, bool
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_function.h 91 * and @c binary_function. These two classes contain nothing but typedefs,
114 struct binary_function struct
140 struct plus : public binary_function<_Tp, _Tp, _Tp>
149 struct minus : public binary_function<_Tp, _Tp, _Tp>
158 struct multiplies : public binary_function<_Tp, _Tp, _Tp>
167 struct divides : public binary_function<_Tp, _Tp, _Tp>
176 struct modulus : public binary_function<_Tp, _Tp, _Tp>
204 struct equal_to : public binary_function<_Tp, _Tp, bool>
213 struct not_equal_to : public binary_function<_Tp, _Tp, bool>
222 struct greater : public binary_function<_Tp, _Tp, bool
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_function.h 95 * and @c binary_function. These two classes contain nothing but typedefs,
118 struct binary_function struct
167 struct plus : public binary_function<_Tp, _Tp, _Tp>
176 struct minus : public binary_function<_Tp, _Tp, _Tp>
185 struct multiplies : public binary_function<_Tp, _Tp, _Tp>
194 struct divides : public binary_function<_Tp, _Tp, _Tp>
203 struct modulus : public binary_function<_Tp, _Tp, _Tp>
336 struct equal_to : public binary_function<_Tp, _Tp, bool>
345 struct not_equal_to : public binary_function<_Tp, _Tp, bool>
354 struct greater : public binary_function<_Tp, _Tp, bool
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/cuda/
functional.hpp 62 template<typename Argument1, typename Argument2, typename Result> struct binary_function : public std::binary_function<Argument1, Argument2, Result> {}; struct in namespace:cv::cuda::device
65 template <typename T> struct plus : binary_function<T, T, T>
76 template <typename T> struct minus : binary_function<T, T, T>
87 template <typename T> struct multiplies : binary_function<T, T, T>
98 template <typename T> struct divides : binary_function<T, T, T>
109 template <typename T> struct modulus : binary_function<T, T, T>
131 template <typename T> struct equal_to : binary_function<T, T, bool>
142 template <typename T> struct not_equal_to : binary_function<T, T, bool>
153 template <typename T> struct greater : binary_function<T, T, bool
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/functional/
functional.hpp 68 template <typename _Arg1, typename _Arg2, typename _Result> struct binary_function struct in namespace:cv::cudev
77 template <typename T> struct plus : binary_function<T, T, T>
86 template <typename T> struct minus : binary_function<T, T, T>
95 template <typename T> struct multiplies : binary_function<T, T, T>
104 template <typename T> struct divides : binary_function<T, T, T>
113 template <typename T> struct modulus : binary_function<T, T, T>
132 template <typename T> struct equal_to : binary_function<T, T, typename MakeVec<uchar, VecTraits<T>::cn>::type>
142 template <typename T> struct not_equal_to : binary_function<T, T, typename MakeVec<uchar, VecTraits<T>::cn>::type>
152 template <typename T> struct greater : binary_function<T, T, typename MakeVec<uchar, VecTraits<T>::cn>::type>
162 template <typename T> struct less : binary_function<T, T, typename MakeVec<uchar, VecTraits<T>::cn>::type
    [all...]

Completed in 996 milliseconds