Home
last modified time | relevance | path

Searched refs:unary_function (Results 1 – 25 of 37) sorted by relevance

12

/openbsd-src/gnu/gcc/libstdc++-v3/include/tr1/
H A Dfunctional_hash.h53 : public std::unary_function<_Tp, std::size_t> \
78 : public std::unary_function<_Tp*, std::size_t>
140 : public std::unary_function<std::string, std::size_t>
150 : public std::unary_function<std::wstring, std::size_t>
163 : public std::unary_function<float, std::size_t>
180 : public std::unary_function<double, std::size_t>
199 : public std::unary_function<long double, std::size_t>
H A Dfunctional147 * Determines if the type _Tp derives from unary_function.
155 static __one __test(const volatile unary_function<_T1, _Res>*);
204 * Knowing which of unary_function and binary_function _Tp derives
212 // Not a unary_function or binary_function, so try a weak result type
218 // unary_function but not binary_function
221 : unary_function<typename _Tp::argument_type,
225 // binary_function but not unary_function
233 // both unary_function and binary_function. import result_type to
237 : unary_function<typename _Tp::argument_type,
248 * Derives from unary_function or binary_function when it
[all …]
H A Dfunctional_iterate.h180 : public unary_function<_Class*, _Res>
234 : public unary_function<const _Class*, _Res>
288 : public unary_function<volatile _Class*, _Res>
341 : public unary_function<const volatile _Class*, _Res>
597 : public unary_function<_T1, _Res>, private _Function_base
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/bits/
H A Dstl_function.h102 struct unary_function { struct
159 struct negate : public unary_function<_Tp,_Tp>
237 struct logical_not : public unary_function<_Tp,bool>
273 : public unary_function<typename _Predicate::argument_type, bool> {
351 : public unary_function<typename _Operation::second_argument_type,
385 : public unary_function<typename _Operation::first_argument_type,
439 class pointer_to_unary_function : public unary_function<_Arg, _Result> {
479 struct _Identity : public unary_function<_Tp,_Tp> {
485 struct _Select1st : public unary_function<_Pair, typename _Pair::first_type> {
495 struct _Select2nd : public unary_function<_Pair, typename _Pair::second_type>
[all …]
/openbsd-src/gnu/gcc/libstdc++-v3/include/bits/
H A Dstl_function.h102 struct unary_function struct
179 struct negate : public unary_function<_Tp, _Tp>
275 struct logical_not : public unary_function<_Tp, bool>
313 : public unary_function<typename _Predicate::argument_type, bool>
393 : public unary_function<typename _Operation::second_argument_type,
427 : public unary_function<typename _Operation::first_argument_type,
481 class pointer_to_unary_function : public unary_function<_Arg, _Result>
530 struct _Identity : public unary_function<_Tp,_Tp>
542 struct _Select1st : public unary_function<_Pair,
555 struct _Select2nd : public unary_function<_Pair,
[all …]
/openbsd-src/gnu/llvm/libcxx/include/__functional/
H A Dunary_function.h23 struct _LIBCPP_TEMPLATE_VIS _LIBCPP_DEPRECATED_IN_CXX11 unary_function struct
42 using __unary_function = unary_function<_Arg, _Result>; argument
/openbsd-src/gnu/llvm/libcxx/include/
H A Dfunctional20 struct unary_function
36 : public unary_function<T1, R> // if wrapping a unary functor
180 : public unary_function<typename Predicate::argument_type, bool>
240 : public unary_function<typename Operation::second_argument_type,
257 : public unary_function<typename Operation::first_argument_type,
273 class pointer_to_unary_function : public unary_function<Arg, Result>
295 class mem_fun_t : public unary_function<T*, S>
314 class mem_fun_ref_t : public unary_function<T, S> // deprecated in C++11, removed in C++17
333 class const_mem_fun_t : public unary_function<const T*, S> // deprecated in C++11, removed in …
352 class const_mem_fun_ref_t : public unary_function<T, S> // deprecated in C++11, removed in C++…
[all …]
H A Dtypeindex39 : public unary_function<type_index, size_t>
50 #include <__functional/unary_function.h>
H A Dsystem_error151 #include <__functional/unary_function.h>
H A DCMakeLists.txt357 __functional/unary_function.h
H A Dmodule.modulemap.in929 module unary_function { private header "__functional/unary_function.h" }
H A Dbitset120 #include <__functional/unary_function.h>
H A Dstring_view209 #include <__functional/unary_function.h>
H A Doptional167 #include <__functional/unary_function.h>
H A Dvariant216 #include <__functional/unary_function.h>
/openbsd-src/gnu/gcc/libstdc++-v3/include/backward/
H A Dfunction.h66 using std::unary_function;
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/backward/
H A Dfunction.h66 using std::unary_function;
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/ext/
H A Dfunctional70 using std::unary_function;
125 : public unary_function<typename _Operation2::argument_type,
151 : public unary_function<typename _Operation2::argument_type,
332 class subtractive_rng : public unary_function<unsigned int, unsigned int> {
/openbsd-src/gnu/gcc/libstdc++-v3/include/ext/
H A Dfunctional71 using std::unary_function;
129 : public unary_function<typename _Operation2::argument_type,
154 : public unary_function<typename _Operation2::argument_type,
352 : public unary_function<unsigned int, unsigned int>
H A Dbitmap_allocator.h311 : public std::unary_function<typename std::pair<_Tp, _Tp>, bool>
335 : public std::unary_function<typename _Functor::argument_type,
361 : public std::unary_function<typename std::pair<_Tp, _Tp>, bool>
/openbsd-src/gnu/llvm/libcxx/docs/
H A DReleaseNotes.rst101 - ``unary_function`` and ``binary_function`` are no longer provided in C++17 and newer Standard mod…
/openbsd-src/gnu/gcc/libstdc++-v3/docs/html/17_intro/
H A DCHECKLIST497 V template <class Arg, class Result> struct unary_function;
573 struct unary_function {
606 T template <class T> struct negate : unary_function<T,T> {
646 T template <class T> struct logical_not : unary_function<T,bool> {
654 : public unary_function<typename Predicate::argument_type,bool> {
676 : public unary_function<typename Operation::second_argument_type,
696 : public unary_function<typename Operation::first_argument_type,
721 class pointer_to_unary_function : public unary_function<Arg, Result> {
743 : public unary_function<T*, S> {
762 : public unary_function<T, S> {
[all …]
/openbsd-src/gnu/lib/libstdc++/libstdc++/docs/html/17_intro/
H A DCHECKLIST497 V template <class Arg, class Result> struct unary_function;
573 struct unary_function {
606 T template <class T> struct negate : unary_function<T,T> {
646 T template <class T> struct logical_not : unary_function<T,bool> {
654 : public unary_function<typename Predicate::argument_type,bool> {
676 : public unary_function<typename Operation::second_argument_type,
696 : public unary_function<typename Operation::first_argument_type,
721 class pointer_to_unary_function : public unary_function<Arg, Result> {
743 : public unary_function<T*, S> {
762 : public unary_function<T, S> {
[all …]
/openbsd-src/gnu/llvm/llvm/utils/gn/secondary/libcxx/include/
H A DBUILD.gn432 "__functional/unary_function.h",
/openbsd-src/gnu/lib/libcxx/
H A DMakefile446 __functional/unary_function.h \

12