Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/std/utilities/meta/meta.unary/meta.unary.comp/
H A Dis_member_pointer.pass.cpp20 static_assert( std::is_member_pointer<T>::value, ""); in test_is_member_pointer()
21 static_assert( std::is_member_pointer<const T>::value, ""); in test_is_member_pointer()
22 static_assert( std::is_member_pointer<volatile T>::value, ""); in test_is_member_pointer()
23 static_assert( std::is_member_pointer<const volatile T>::value, ""); in test_is_member_pointer()
35 static_assert(!std::is_member_pointer<T>::value, ""); in test_is_not_member_pointer()
36 static_assert(!std::is_member_pointer<const T>::value, ""); in test_is_not_member_pointer()
37 static_assert(!std::is_member_pointer<volatile T>::value, ""); in test_is_not_member_pointer()
38 static_assert(!std::is_member_pointer<const volatile T>::value, ""); in test_is_not_member_pointer()
H A Dlvalue_ref.pass.cpp26 static_assert(!std::is_member_pointer<T>::value, ""); in test_lvalue_ref()
H A Drvalue_ref.pass.cpp26 static_assert(!std::is_member_pointer<T>::value, ""); in test_rvalue_ref()
H A Dvoid.pass.cpp26 static_assert(!std::is_member_pointer<T>::value, ""); in test_void_imp()
H A Dmember_object_pointer.pass.cpp26 static_assert( std::is_member_pointer<T>::value, ""); in test_member_object_pointer_imp()
H A Dfloating_point.pass.cpp26 static_assert(!std::is_member_pointer<T>::value, ""); in test_floating_point_imp()
H A Dpointer.pass.cpp26 static_assert(!std::is_member_pointer<T>::value, ""); in test_pointer_imp()
H A Dunion.pass.cpp26 static_assert(!std::is_member_pointer<T>::value, ""); in test_union_imp()
H A Denum.pass.cpp26 static_assert(!std::is_member_pointer<T>::value, ""); in test_enum_imp()
H A Dfunction.pass.cpp26 static_assert(!std::is_member_pointer<T>::value, ""); in test_function_imp()
H A Dmember_function_pointer.pass.cpp26 static_assert( std::is_member_pointer<T>::value, ""); in test_member_function_pointer_imp()
H A Dclass.pass.cpp26 static_assert(!std::is_member_pointer<T>::value, ""); in test_class_imp()
H A Darray.pass.cpp26 static_assert(!std::is_member_pointer<T>::value, ""); in test_array_imp()
H A Dintegral.pass.cpp26 static_assert(!std::is_member_pointer<T>::value, ""); in test_integral_imp()
/llvm-project-15.0.7/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/
H A Dis_member_pointer.pass.cpp20 static_assert( std::is_member_pointer<T>::value, ""); in test_is_member_pointer()
21 static_assert( std::is_member_pointer<const T>::value, ""); in test_is_member_pointer()
22 static_assert( std::is_member_pointer<volatile T>::value, ""); in test_is_member_pointer()
23 static_assert( std::is_member_pointer<const volatile T>::value, ""); in test_is_member_pointer()
35 static_assert(!std::is_member_pointer<T>::value, ""); in test_is_not_member_pointer()
36 static_assert(!std::is_member_pointer<const T>::value, ""); in test_is_not_member_pointer()
37 static_assert(!std::is_member_pointer<volatile T>::value, ""); in test_is_not_member_pointer()
38 static_assert(!std::is_member_pointer<const volatile T>::value, ""); in test_is_not_member_pointer()
/llvm-project-15.0.7/clang/test/SemaTemplate/
H A Dtemp_class_spec.cpp215 struct is_member_pointer { struct
220 struct is_member_pointer<T Class::*> { struct
226 int is_member_pointer0[is_member_pointer<int X::*>::value? 1 : -1]; argument
227 int is_member_pointer1[is_member_pointer<const int X::*>::value? 1 : -1];
228 int is_member_pointer2[is_member_pointer<int (X::*)()>::value? 1 : -1];
229 int is_member_pointer3[is_member_pointer<int (X::*)(int) const>::value? 1 : -1];
230 int is_member_pointer4[is_member_pointer<int (X::**)(int) const>::value? -1 : 1];
231 int is_member_pointer5[is_member_pointer<int>::value? -1 : 1];
/llvm-project-15.0.7/libcxx/include/__type_traits/
H A Dis_member_pointer.h24 struct _LIBCPP_TEMPLATE_VIS is_member_pointer : _BoolConstant<__is_member_pointer(_Tp)> { }; struct
33 template <class _Tp> struct _LIBCPP_TEMPLATE_VIS is_member_pointer
38 inline constexpr bool is_member_pointer_v = is_member_pointer<_Tp>::value;
H A Dis_scalar.h44 is_member_pointer<_Tp>::value ||
/llvm-project-15.0.7/libcxx/include/__algorithm/
H A Dmake_projected.h63 !is_member_pointer<typename decay<_Pred>::type>::value && (
/llvm-project-15.0.7/libcxx/include/
H A Dtype_traits53 template <class T> struct is_member_pointer;
287 = is_member_pointer<T>::value; // C++17
471 #include <__type_traits/is_member_pointer.h>
H A DCMakeLists.txt563 __type_traits/is_member_pointer.h
H A Dmodule.modulemap.in1153 module is_member_pointer { private header "__type_traits/is_member_pointer.h" }
/llvm-project-15.0.7/llvm/utils/gn/secondary/libcxx/include/
H A DBUILD.gn625 "__type_traits/is_member_pointer.h",
/llvm-project-15.0.7/clang/include/clang/Tooling/Inclusions/
H A DStdSymbolMap.inc559 SYMBOL(is_member_pointer, std::, <type_traits>)
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dtype-traits.cpp1006 void is_member_pointer() in is_member_pointer() function