Home
last modified time | relevance | path

Searched refs:binary_function (Results 1 – 20 of 20) sorted by relevance

/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/bits/
H A Dstl_function.h116 struct binary_function in _GLIBCXX_VISIBILITY() struct
142 struct plus : public binary_function<_Tp, _Tp, _Tp> in _GLIBCXX_VISIBILITY()
151 struct minus : public binary_function<_Tp, _Tp, _Tp> in _GLIBCXX_VISIBILITY()
160 struct multiplies : public binary_function<_Tp, _Tp, _Tp> in _GLIBCXX_VISIBILITY()
169 struct divides : public binary_function<_Tp, _Tp, _Tp> in _GLIBCXX_VISIBILITY()
178 struct modulus : public binary_function<_Tp, _Tp, _Tp> in _GLIBCXX_VISIBILITY()
206 struct equal_to : public binary_function<_Tp, _Tp, bool> in _GLIBCXX_VISIBILITY()
215 struct not_equal_to : public binary_function<_Tp, _Tp, bool> in _GLIBCXX_VISIBILITY()
224 struct greater : public binary_function<_Tp, _Tp, bool> in _GLIBCXX_VISIBILITY()
233 struct less : public binary_function<_Tp, _Tp, bool> in _GLIBCXX_VISIBILITY()
[all …]
H A Dstl_multimap.h109 : public std::binary_function<value_type, value_type, bool> in _GLIBCXX_VISIBILITY()
H A Dstl_map.h109 : public std::binary_function<value_type, value_type, bool> in _GLIBCXX_VISIBILITY()
H A Dshared_ptr_base.h1167 struct _Sp_less : public binary_function<_Sp, _Sp, bool> in _GLIBCXX_VISIBILITY()
1365 struct _Sp_owner_less : public binary_function<_Tp, _Tp, bool> in _GLIBCXX_VISIBILITY()
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/bits/
H A Dstl_function.h118 struct binary_function in _GLIBCXX_VISIBILITY() struct
167 struct plus : public binary_function<_Tp, _Tp, _Tp> in _GLIBCXX_VISIBILITY()
177 struct minus : public binary_function<_Tp, _Tp, _Tp> in _GLIBCXX_VISIBILITY()
187 struct multiplies : public binary_function<_Tp, _Tp, _Tp> in _GLIBCXX_VISIBILITY()
197 struct divides : public binary_function<_Tp, _Tp, _Tp> in _GLIBCXX_VISIBILITY()
207 struct modulus : public binary_function<_Tp, _Tp, _Tp> in _GLIBCXX_VISIBILITY()
351 struct equal_to : public binary_function<_Tp, _Tp, bool> in _GLIBCXX_VISIBILITY()
361 struct not_equal_to : public binary_function<_Tp, _Tp, bool> in _GLIBCXX_VISIBILITY()
371 struct greater : public binary_function<_Tp, _Tp, bool> in _GLIBCXX_VISIBILITY()
381 struct less : public binary_function<_Tp, _Tp, bool> in _GLIBCXX_VISIBILITY()
[all …]
H A Drefwrap.h63 : std::binary_function<_T1, _T2, _Res> { }; in _GLIBCXX_VISIBILITY()
241 : binary_function<_T1, _T2, _Res> in _GLIBCXX_VISIBILITY()
246 : binary_function<_T1, _T2, _Res> in _GLIBCXX_VISIBILITY()
251 : binary_function<_T1, _T2, _Res> in _GLIBCXX_VISIBILITY()
256 : binary_function<_T1, _T2, _Res> in _GLIBCXX_VISIBILITY()
268 : binary_function<_T1, _T2, _Res> in _GLIBCXX_VISIBILITY()
H A Dstl_multimap.h127 : public std::binary_function<value_type, value_type, bool> in _GLIBCXX_VISIBILITY()
H A Dshared_ptr_base.h1516 struct _Sp_less : public binary_function<_Sp, _Sp, bool> in _GLIBCXX_VISIBILITY()
1746 struct _Sp_owner_less : public binary_function<_Tp, _Tp, bool> in _GLIBCXX_VISIBILITY()
H A Dstl_map.h128 : public std::binary_function<value_type, value_type, bool> in _GLIBCXX_VISIBILITY()
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/parallel/
H A Dbase.h157 class _EqualFromLess : public std::binary_function<_T1, _T2, bool>
244 struct _EqualTo : std::binary_function<_T1, _T2, bool>
252 struct _Less : std::binary_function<_T1, _T2, bool>
272 struct _Plus : public std::binary_function<_Tp1, _Tp2, _Result>
288 struct _Multiplies : public std::binary_function<_Tp1, _Tp2, _Result>
H A Dmultiseq_selection.h54 : public std::binary_function<std::pair<_T1, _T2>,
80 class _LexicographicReverse : public std::binary_function<_T1, _T2, bool>
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/parallel/
H A Dbase.h157 class _EqualFromLess : public std::binary_function<_T1, _T2, bool>
244 struct _EqualTo : std::binary_function<_T1, _T2, bool>
252 struct _Less : std::binary_function<_T1, _T2, bool>
272 struct _Plus : public std::binary_function<_Tp1, _Tp2, _Result>
288 struct _Multiplies : public std::binary_function<_Tp1, _Tp2, _Result>
H A Dmultiseq_selection.h54 : public std::binary_function<std::pair<_T1, _T2>,
80 class _LexicographicReverse : public std::binary_function<_T1, _T2, bool>
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/tr1/
H A Dfunctional257 /// Determines if the type _Tp derives from binary_function.
263 static __one __test(const volatile binary_function<_T1, _T2, _Res>*);
330 * Knowing which of unary_function and binary_function _Tp derives
337 // Not a unary_function or binary_function, so try a weak result type.
343 // unary_function but not binary_function
350 // binary_function but not unary_function
353 : binary_function<typename _Tp::first_argument_type,
358 // Both unary_function and binary_function. Import result_type to
364 binary_function<typename _Tp::first_argument_type,
372 * Derives from unary_function or binary_function when it
[all …]
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/tr1/
H A Dfunctional253 /// Determines if the type _Tp derives from binary_function.
259 static __one __test(const volatile binary_function<_T1, _T2, _Res>*);
326 * Knowing which of unary_function and binary_function _Tp derives
333 // Not a unary_function or binary_function, so try a weak result type.
339 // unary_function but not binary_function
346 // binary_function but not unary_function
349 : binary_function<typename _Tp::first_argument_type,
354 // Both unary_function and binary_function. Import result_type to
360 binary_function<typename _Tp::first_argument_type,
368 * Derives from unary_function or binary_function when it
[all …]
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/std/
H A Dfunctional205 /// Determines if the type _Tp derives from binary_function.
211 static __one __test(const volatile binary_function<_T1, _T2, _Res>*);
265 * Knowing which of unary_function and binary_function _Tp derives
310 * Derives from unary_function or binary_function when it
313 * derive from both unary_function and binary_function.
348 : binary_function<_T1, _T2, _Res>
353 : binary_function<_T1, _T2, _Res>
358 : binary_function<_T1, _T2, _Res>
363 : binary_function<_T1, _T2, _Res>
375 : binary_function<_T1, _T2, _Res>
[all …]
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/ext/
H A Dfunctional70 using std::binary_function;
227 struct _Project1st : public binary_function<_Arg1, _Arg2, _Arg1>
235 struct _Project2nd : public binary_function<_Arg1, _Arg2, _Arg2>
H A Drope436 : public std::binary_function<rope<_CharT, _Alloc>, rope<_CharT, _Alloc>,
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/ext/
H A Dfunctional69 using std::binary_function;
212 struct _Project1st : public binary_function<_Arg1, _Arg2, _Arg1>
220 struct _Project2nd : public binary_function<_Arg1, _Arg2, _Arg2>
H A Drope435 : public std::binary_function<rope<_CharT, _Alloc>, rope<_CharT, _Alloc>,