/llvm-project/libcxx/test/libcxx/depr/depr.func.adaptor.typedefs/ |
H A D | typedefs.depr_in_cxx17.verify.cpp | 28 T::second_argument_type c; // expected-warning {{is deprecated}} in test_functional() 37 T::second_argument_type c; // expected-warning {{is deprecated}} in test_functional() 57 T::second_argument_type c; // expected-warning {{is deprecated}} in test_owner_less() 66 T::second_argument_type c; // expected-warning {{is deprecated}} in test_owner_less() 111 T::second_argument_type c; // expected-warning {{is deprecated}} in test_map() 120 T::second_argument_type c; // expected-warning {{is deprecated}} in test_map()
|
/llvm-project/libcxx/test/std/depr/depr.lib.binders/ |
H A D | test_func.h | 17 typedef double second_argument_type; typedef 24 result_type operator() (const first_argument_type& x, second_argument_type& y) const in operator() 26 result_type operator() (const first_argument_type& x, const second_argument_type& y) const in operator() 28 result_type operator() (first_argument_type& x, const second_argument_type& y) const in operator()
|
/llvm-project/libcxx/include/__functional/ |
H A D | binder1st.h | 26 …: public __unary_function<typename _Operation::second_argument_type, typename _Operation::result_t… 35 operator()(typename _Operation::second_argument_type& __x) const { in operator() 39 operator()(const typename _Operation::second_argument_type& __x) const { in operator()
|
H A D | binary_negate.h | 27 typename _Predicate::second_argument_type, 36 … _Predicate::first_argument_type& __x, const typename _Predicate::second_argument_type& __y) const… in operator()
|
H A D | binary_function.h | 26 typedef _Arg2 second_argument_type; typedef 36 using second_argument_type _LIBCPP_DEPRECATED_IN_CXX17 = _Arg2;
|
H A D | binder2nd.h | 29 typename _Operation::second_argument_type value; 32 …HIDE_FROM_ABI binder2nd(const _Operation& __x, const typename _Operation::second_argument_type __y) in binder2nd()
|
/llvm-project/libcxx/test/std/utilities/function.objects/negators/ |
H A D | not2.depr_in_cxx17.verify.cpp | 21 typedef int second_argument_type; typedef 22 bool operator()(first_argument_type, second_argument_type) const { return true; } in operator ()()
|
H A D | binary_negate.depr_in_cxx17.verify.cpp | 21 typedef int second_argument_type; typedef 22 bool operator()(first_argument_type, second_argument_type) const { return true; } in operator ()()
|
H A D | binary_negate.pass.cpp | 28 static_assert((std::is_same<int, F::second_argument_type>::value), "" ); in main()
|
/llvm-project/libcxx/test/std/utilities/function.objects/refwrap/ |
H A D | binder_typedefs.compile.pass.cpp | 31 typedef char second_argument_type; typedef 40 …td::is_same<std::reference_wrapper<int(BinaryFunction::*)(char)>::second_argument_type, char>::val…
|
/llvm-project/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/ |
H A D | types.pass.cpp | 63 template <typename C> static yes check( typename C::second_argument_type *); 97 static_assert((std::is_same<typename F::second_argument_type, arg_type2>::value), "" ); in test_binary_function()
|
/llvm-project/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.ownerless/ |
H A D | owner_less.pass.cpp | 72 static_assert((std::is_same<std::shared_ptr<int>, CS::second_argument_type>::value), "" ); in main() 95 static_assert((std::is_same<std::weak_ptr<int>, CS::second_argument_type>::value), "" ); in main()
|
/llvm-project/libcxx/include/ |
H A D | functional | 30 typedef Arg2 second_argument_type; 204 typename Predicate::second_argument_type, 210 const typename Predicate::second_argument_type& y) const; 264 : public unary_function<typename Operation::second_argument_type, 272 typename Operation::result_type operator()( typename Operation::second_argument_type& x) const; 273 typename Operation::result_type operator()(const typename Operation::second_argument_type& x) const; 286 typename Operation::second_argument_type value; 288 binder2nd(const Operation& x, const typename Operation::second_argument_type y);
|
/llvm-project/libcxx/test/std/depr/depr.function.objects/depr.base/ |
H A D | binary_function.pass.cpp | 31 …static_assert((std::is_same<std::binary_function<int, unsigned, char>::second_argument_type, unsig… in main()
|
/llvm-project/libcxx/test/std/utilities/function.objects/func.require/ |
H A D | binary_function.pass.cpp | 26 static_assert((std::is_same<bf::second_argument_type, short>::value), ""); in main()
|
/llvm-project/libcxx/test/std/containers/associative/multimap/multimap.value_compare/ |
H A D | types.pass.cpp | 27 ASSERT_SAME_TYPE(value_compare::second_argument_type, value_type); in main()
|
/llvm-project/libcxx/test/std/containers/associative/map/map.value_compare/ |
H A D | types.pass.cpp | 27 ASSERT_SAME_TYPE(value_compare::second_argument_type, value_type); in main()
|
/llvm-project/libcxx/test/std/depr/depr.lib.binders/depr.lib.binder.1st/ |
H A D | binder1st.pass.cpp | 45 std::unary_function<test_func::second_argument_type, in do_test()
|
/llvm-project/libcxx/test/std/utilities/function.objects/arithmetic.operations/ |
H A D | plus.pass.cpp | 27 static_assert((std::is_same<int, F::second_argument_type>::value), ""); in main()
|
H A D | divides.pass.cpp | 27 static_assert((std::is_same<int, F::second_argument_type>::value), "" ); in main()
|
H A D | minus.pass.cpp | 27 static_assert((std::is_same<int, F::second_argument_type>::value), "" ); in main()
|
H A D | modulus.pass.cpp | 27 static_assert((std::is_same<int, F::second_argument_type>::value), "" ); in main()
|
H A D | multiplies.pass.cpp | 27 static_assert((std::is_same<int, F::second_argument_type>::value), "" ); in main()
|
/llvm-project/libcxx/test/std/utilities/function.objects/comparisons/ |
H A D | equal_to.pass.cpp | 27 static_assert((std::is_same<int, F::second_argument_type>::value), "" ); in main()
|
H A D | not_equal_to.pass.cpp | 27 static_assert((std::is_same<int, F::second_argument_type>::value), "" ); in main()
|