Home
last modified time | relevance | path

Searched refs:is_member_function_pointer (Results 1 – 25 of 18920) sorted by relevance

12345678910>>...757

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_traits/include/boost/type_traits/detail/
Dis_member_function_pointer_cxx_11.hpp26 struct is_member_function_pointer : public false_type {}; struct
28 struct is_member_function_pointer<T const> : public is_member_function_pointer<T> {}; struct
30 struct is_member_function_pointer<T volatile> : public is_member_function_pointer<T> {}; struct
32 struct is_member_function_pointer<T const volatile> : public is_member_function_pointer<T> {}; struct
48 …struct is_member_function_pointer<Ret (BOOST_TT_DEF_CALL C::*)(Args...)BOOST_TT_NOEXCEPT_DECL> : p… struct
50 …struct is_member_function_pointer<Ret (C::*)(Args..., ...)BOOST_TT_NOEXCEPT_DECL> : public true_ty… struct
53 …struct is_member_function_pointer<Ret (BOOST_TT_DEF_CALL C::*)(Args...)const BOOST_TT_NOEXCEPT_DEC… struct
55 …struct is_member_function_pointer<Ret(C::*)(Args..., ...)const BOOST_TT_NOEXCEPT_DECL> : public tr… struct
58 …struct is_member_function_pointer<Ret (BOOST_TT_DEF_CALL C::*)(Args...)volatile BOOST_TT_NOEXCEPT_… struct
60 …struct is_member_function_pointer<Ret(C::*)(Args..., ...)volatile BOOST_TT_NOEXCEPT_DECL> : public… struct
[all …]
Dis_member_function_pointer_cxx_03.hpp33 template <class T> struct is_member_function_pointer : public integral_constant<bool, __is_member_f… struct
36 template <class T> struct is_member_function_pointer
110 struct is_member_function_pointer
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_traits/test/
Dis_member_func_test.cpp33 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<T>::value, true); in test_tricky()
37 TT_TEST_BEGIN(is_member_function_pointer)
39 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<f1>::value, false);
40 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<f2>::value, false);
41 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<f3>::value, false);
42 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<void*>::value, false);
43 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<mf1>::value, true);
44 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<mf2>::value, true);
45 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<mf3>::value, true);
46 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<mf4>::value, true);
[all …]
Dtricky_partial_spec_test.cpp112 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<const f1>::value, false);
113 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<const mp>::value, false);
114 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<volatile mp>::value, false);
115 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<const volatile mp>::value, false);
116 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<const mf3>::value, true);
117 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<volatile mf3>::value, true);
118 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<const volatile mf3>::value, true);
Dtricky_function_type_test.cpp94 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<vproc1>::value, true);
96 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<vproc2>::value, true);
98 BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<vproc3>::value, true);
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/function_types/test/classification/
Dis_cv_mem_func_ptr.cpp22 ft::is_member_function_pointer< mem_func_ptr, ft::non_const >
26 ft::is_member_function_pointer< mem_func_ptr, ft::non_volatile >
30 ft::is_member_function_pointer< mem_func_ptr,
35 ft::is_member_function_pointer< mem_func_ptr, ft::const_qualified >
39 ft::is_member_function_pointer< mem_func_ptr, ft::volatile_qualified >
43 ft::is_member_function_pointer< mem_func_ptr,
48 ft::is_member_function_pointer< mem_func_ptr,
53 ft::is_member_function_pointer< mem_func_ptr,
60 ft::is_member_function_pointer< c_mem_func_ptr, ft::const_qualified >
64 ft::is_member_function_pointer< c_mem_func_ptr, ft::non_volatile >
[all …]
Dis_member_function_pointer.cpp26 ft::is_member_function_pointer< func >
30 ft::is_member_function_pointer< func_ptr >
34 ft::is_member_function_pointer< func_ref >
38 ft::is_member_function_pointer< mem_func_ptr >
42 ft::is_member_function_pointer< c_mem_func_ptr >
46 ft::is_member_function_pointer< v_mem_func_ptr >
50 ft::is_member_function_pointer< cv_mem_func_ptr >
54 ft::is_member_function_pointer< mem_ptr >
58 ft::is_member_function_pointer< func_ptr* >
62 ft::is_member_function_pointer< mem_func_ptr* >
[all …]
Dis_cv_pointer.cpp39 ft::is_member_function_pointer< mem_func_c_ptr, ft::non_cv >
43 ft::is_member_function_pointer< mem_func_v_ptr, ft::non_cv >
47 ft::is_member_function_pointer< mem_func_cv_ptr, ft::non_cv >
/aosp_15_r20/external/clang/test/SemaTemplate/
H A Dtemp_class_spec.cpp234 struct is_member_function_pointer { struct
239 struct is_member_function_pointer<T (Class::*)()> { argument
244 struct is_member_function_pointer<T (Class::*)() const> { argument
249 struct is_member_function_pointer<T (Class::*)() volatile> { argument
254 struct is_member_function_pointer<T (Class::*)() const volatile> { argument
259 struct is_member_function_pointer<T (Class::*)(A1)> { argument
264 struct is_member_function_pointer<T (Class::*)(A1) const> { argument
269 struct is_member_function_pointer<T (Class::*)(A1) volatile> { argument
274 struct is_member_function_pointer<T (Class::*)(A1) const volatile> { struct
279 is_member_function_pointer<int X::*>::value? -1 : 1]; argument
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/type_traits/doc/
Dis_member_function_pointer.qbk8 [section:is_member_function_pointer is_member_function_pointer]
10 struct is_member_function_pointer : public __tof {};
20 __header ` #include <boost/type_traits/is_member_function_pointer.hpp>` or ` #include <boost/type_t…
24 [:`is_member_function_pointer<int (MyClass::*)(void)>` inherits from `__true_type`.]
26 [:`is_member_function_pointer<int (MyClass::*)(char)>::type` is the type `__true_type`.]
28 [:`is_member_function_pointer<int (MyClass::*)(void)const>::value` is an integral constant
31 [:`is_member_function_pointer<int (MyClass::*)>::value` is an integral constant
36 [:`is_member_function_pointer<T>::value_type` is the type `bool`.]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/c++/v1/__type_traits/
Dis_member_function_pointer.h40 struct _LIBCPP_TEMPLATE_VIS is_member_function_pointer : _BoolConstant<__is_member_function_pointer…
50 struct _LIBCPP_TEMPLATE_VIS is_member_function_pointer
55 inline constexpr bool is_member_function_pointer_v = is_member_function_pointer<_Tp>::value;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/c++/v1/__type_traits/
Dis_member_function_pointer.h40 struct _LIBCPP_TEMPLATE_VIS is_member_function_pointer : _BoolConstant<__is_member_function_pointer…
50 struct _LIBCPP_TEMPLATE_VIS is_member_function_pointer
55 inline constexpr bool is_member_function_pointer_v = is_member_function_pointer<_Tp>::value;
Dinvoke.h49 __enable_if_t<is_member_function_pointer<_DecayFp>::value &&
54 …__enable_if_t<is_member_function_pointer<_DecayFp>::value && __is_reference_wrapper<_DecayA0>::val…
62 __enable_if_t<is_member_function_pointer<_DecayFp>::value &&
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/c++/v1/__type_traits/
Dis_member_function_pointer.h40 struct _LIBCPP_TEMPLATE_VIS is_member_function_pointer : _BoolConstant<__is_member_function_pointer…
50 struct _LIBCPP_TEMPLATE_VIS is_member_function_pointer
55 inline constexpr bool is_member_function_pointer_v = is_member_function_pointer<_Tp>::value;
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/c++/v1/__type_traits/
Dis_member_function_pointer.h40 struct _LIBCPP_TEMPLATE_VIS is_member_function_pointer : _BoolConstant<__is_member_function_pointer…
50 struct _LIBCPP_TEMPLATE_VIS is_member_function_pointer
55 inline constexpr bool is_member_function_pointer_v = is_member_function_pointer<_Tp>::value;
Dinvoke.h222 is_member_function_pointer<_MP>::value,
243 __enable_if_t<is_member_function_pointer<_DecayFp>::value &&
248 …__enable_if_t<is_member_function_pointer<_DecayFp>::value && __is_reference_wrapper<_DecayA0>::val…
256 __enable_if_t<is_member_function_pointer<_DecayFp>::value &&
/aosp_15_r20/external/cronet/third_party/libc++/src/include/__type_traits/
H A Dis_member_function_pointer.h40 struct _LIBCPP_TEMPLATE_VIS is_member_function_pointer : _BoolConstant<__is_member_function_pointer…
50 struct _LIBCPP_TEMPLATE_VIS is_member_function_pointer
55 inline constexpr bool is_member_function_pointer_v = is_member_function_pointer<_Tp>::value;
H A Dinvoke.h49 __enable_if_t<is_member_function_pointer<_DecayFp>::value &&
54 …__enable_if_t<is_member_function_pointer<_DecayFp>::value && __is_reference_wrapper<_DecayA0>::val…
62 __enable_if_t<is_member_function_pointer<_DecayFp>::value &&
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/proto/include/boost/proto/context/detail/preprocessed/
Ddefault_eval.hpp23 return this->invoke(expr, context, is_member_function_pointer<function_type>()); in operator ()()
57 return this->invoke(expr, context, is_member_function_pointer<function_type>()); in operator ()()
91 return this->invoke(expr, context, is_member_function_pointer<function_type>()); in operator ()()
125 return this->invoke(expr, context, is_member_function_pointer<function_type>()); in operator ()()
159 return this->invoke(expr, context, is_member_function_pointer<function_type>()); in operator ()()
193 return this->invoke(expr, context, is_member_function_pointer<function_type>()); in operator ()()
227 return this->invoke(expr, context, is_member_function_pointer<function_type>()); in operator ()()
261 return this->invoke(expr, context, is_member_function_pointer<function_type>()); in operator ()()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/include/boost/thread/detail/
Dinvoke.hpp548 is_member_function_pointer<Fp>::value,
1375 is_member_function_pointer<Fp>::value,
1397 is_member_function_pointer<Fp>::value,
1419 is_member_function_pointer<Fp>::value,
1441 is_member_function_pointer<Fp>::value,
1464 is_member_function_pointer<Fp>::value,
1486 is_member_function_pointer<Fp>::value,
1508 is_member_function_pointer<Fp>::value,
1522 is_member_function_pointer<Fp>::value,
1533 is_member_function_pointer<Fp>::value,
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/proto/include/boost/proto/transform/detail/preprocessed/
Ddefault_function_impl.hpp28 return this->invoke(e, s, d, is_member_function_pointer<function_type>()); in operator ()()
76 return this->invoke(e, s, d, is_member_function_pointer<function_type>()); in operator ()()
124 return this->invoke(e, s, d, is_member_function_pointer<function_type>()); in operator ()()
172 return this->invoke(e, s, d, is_member_function_pointer<function_type>()); in operator ()()
220 return this->invoke(e, s, d, is_member_function_pointer<function_type>()); in operator ()()
268 return this->invoke(e, s, d, is_member_function_pointer<function_type>()); in operator ()()
316 return this->invoke(e, s, d, is_member_function_pointer<function_type>()); in operator ()()
364 return this->invoke(e, s, d, is_member_function_pointer<function_type>()); in operator ()()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/function_types/include/boost/function_types/
Dis_member_function_pointer.hpp21 struct is_member_function_pointer struct
26 BOOST_MPL_AUX_LAMBDA_SUPPORT(2,is_member_function_pointer,(T,Tag))
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/phoenix/include/boost/phoenix/bind/
Dbind_member_variable.hpp23 boost::is_member_function_pointer<RT (ClassT::*)>,
39 boost::is_member_function_pointer<RT (ClassT::*)>,
/aosp_15_r20/external/pigweed/third_party/fuchsia/repo/sdk/lib/stdcompat/include/lib/stdcompat/internal/
H A Dtype_traits.h22 static constexpr bool invoke_pmf_base = std::is_member_function_pointer<MemFn Class::*>::value &&
27 std::is_member_function_pointer<MemFn Class::*>::value &&
32 std::is_member_function_pointer<MemFn Class::*>::value && !invoke_pmf_base<MemFn, Class, T> &&
/aosp_15_r20/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/
H A Dmember_function_pointer_no_variadics.pass.cpp33 static_assert( std::is_member_function_pointer<T>::value, ""); in test_member_function_pointer_imp()
82 static_assert(!std::is_member_function_pointer<incomplete_type>::value, ""); in main()

12345678910>>...757