Searched refs:__is_convertible (Results 1 – 15 of 15) sorted by relevance
/external/clang/test/Modules/ |
D | hidden-definition.cpp | 14 _Static_assert(!__is_convertible(Y*, X*), "");
|
/external/libcxx/include/ |
D | type_traits | 911 struct __is_convertible 925 template <class _T1, class _T2> struct __is_convertible<_T1, _T2, 1, 0> : false_type {}; 927 template <class _T1> struct __is_convertible<_T1, const _T1&, 1, 0> : true_type {}; 928 template <class _T1> struct __is_convertible<const _T1, const _T1&, 1, 0> : true_type {}; 930 template <class _T1> struct __is_convertible<_T1, _T1&&, 1, 0> : true_type {}; 931 template <class _T1> struct __is_convertible<_T1, const _T1&&, 1, 0> : true_type {}; 932 template <class _T1> struct __is_convertible<_T1, volatile _T1&&, 1, 0> : true_type {}; 933 template <class _T1> struct __is_convertible<_T1, const volatile _T1&&, 1, 0> : true_type {}; 936 template <class _T1, class _T2> struct __is_convertible<_T1, _T2*, 1, 0> 937 …: public integral_constant<bool, __is_convertible<typename remove_all_extents<_T1>::type*, _T2*>::… [all …]
|
/external/clang/test/PCH/ |
D | cxx-traits.h | 29 struct __is_convertible {}; // expected-warning {{made available}} struct
|
D | cxx-traits.cpp | 27 bool _is_convertible_result = __is_convertible(int, int);
|
/external/clang/test/SemaCXX/ |
D | type-traits.cpp | 1744 int t01[T(__is_convertible(IntWrapper, IntWrapper))]; in is_convertible() 1745 int t02[T(__is_convertible(IntWrapper, const IntWrapper))]; in is_convertible() 1746 int t03[T(__is_convertible(IntWrapper, int))]; in is_convertible() 1747 int t04[T(__is_convertible(int, IntWrapper))]; in is_convertible() 1748 int t05[T(__is_convertible(IntWrapper, FloatWrapper))]; in is_convertible() 1749 int t06[T(__is_convertible(FloatWrapper, IntWrapper))]; in is_convertible() 1750 int t07[T(__is_convertible(FloatWrapper, float))]; in is_convertible() 1751 int t08[T(__is_convertible(float, FloatWrapper))]; in is_convertible()
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/ |
D | gtest-internal.h | 819 static const bool value = __is_convertible(From, To);
|
/external/gtest/include/gtest/internal/ |
D | gtest-internal.h | 819 static const bool value = __is_convertible(From, To);
|
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-internal.h | 916 static const bool value = __is_convertible(From, To);
|
/external/google-breakpad/src/testing/gtest/include/gtest/internal/ |
D | gtest-internal.h | 893 static const bool value = __is_convertible(From, To);
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-internal.h | 887 static const bool value = __is_convertible(From, To);
|
/external/clang/include/clang/Basic/ |
D | TokenKinds.def | 472 TYPE_TRAIT_2(__is_convertible, IsConvertible, KEYCXX)
|
/external/clang/lib/Parse/ |
D | ParseExpr.cpp | 796 REVERTIBLE_TYPE_TRAIT(__is_convertible); in ParseCastExpression()
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/ |
D | gtest.h | 7780 static const bool value = __is_convertible(From, To);
|
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/ |
D | gtest.h | 7779 static const bool value = __is_convertible(From, To);
|
/external/opencv3/modules/ts/include/opencv2/ts/ |
D | ts_gtest.h | 7840 static const bool value = __is_convertible(From, To);
|