/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.rel/ |
is_convertible.pass.cpp | 12 // is_convertible 19 static_assert((std::is_convertible<T, U>::value), ""); 20 static_assert((std::is_convertible<const T, U>::value), ""); 21 static_assert((std::is_convertible<T, const U>::value), ""); 22 static_assert((std::is_convertible<const T, const U>::value), ""); 28 static_assert((!std::is_convertible<T, U>::value), ""); 29 static_assert((!std::is_convertible<const T, U>::value), ""); 30 static_assert((!std::is_convertible<T, const U>::value), ""); 31 static_assert((!std::is_convertible<const T, const U>::value), ""); 103 static_assert((!std::is_convertible<Array, Array&>::value), "") [all...] |
/external/libcxx/test/utilities/meta/meta.rel/ |
is_convertible.pass.cpp | 12 // is_convertible 19 static_assert((std::is_convertible<T, U>::value), ""); 20 static_assert((std::is_convertible<const T, U>::value), ""); 21 static_assert((std::is_convertible<T, const U>::value), ""); 22 static_assert((std::is_convertible<const T, const U>::value), ""); 28 static_assert((!std::is_convertible<T, U>::value), ""); 29 static_assert((!std::is_convertible<const T, U>::value), ""); 30 static_assert((!std::is_convertible<T, const U>::value), ""); 31 static_assert((!std::is_convertible<const T, const U>::value), ""); 96 static_assert((!std::is_convertible<Array, Array&>::value), "") [all...] |
Android.mk | 23 test_name := utilities/meta/meta.rel/is_convertible 24 test_src := is_convertible.pass.cpp
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/ |
iterator_categories.hpp | 20 # include <boost/type_traits/is_convertible.hpp> 78 is_convertible<Cat,std::random_access_iterator_tag> 81 is_convertible<Cat,std::bidirectional_iterator_tag> 84 is_convertible<Cat,std::forward_iterator_tag> 87 is_convertible<Cat,std::input_iterator_tag> 90 is_convertible<Cat,std::output_iterator_tag> 111 is_convertible<Traversal,random_access_traversal_tag> 114 is_convertible<Traversal,bidirectional_traversal_tag> 117 is_convertible<Traversal,forward_traversal_tag> 120 is_convertible<Traversal,single_pass_traversal_tag [all...] |
interoperable.hpp | 13 # include <boost/type_traits/is_convertible.hpp> 30 // For compilers that don't support is_convertible 40 is_convertible< A, B > 41 , is_convertible< B, A > >
|
iterator_adaptor.hpp | 23 #include <boost/type_traits/is_convertible.hpp> 43 // is_convertible (naturally). This workaround is fortunately not 46 struct is_convertible<use_default,To> struct in namespace:boost 90 // meta functions like boost::is_convertible do not return false positives, 95 // always enabled for compilers that don't support enable_if or is_convertible. 98 // The operators implementation relies on boost::is_convertible not returning 110 , is_convertible<From, To> 128 // of is_convertible in a few cases. 134 , is_convertible<From, To> 145 is_convertible<From, To [all...] |
/external/chromium_org/base/ |
template_util_unittest.cc | 39 // is_convertible<From, To> 44 // (is_convertible < Child), (Parent > ::value) 47 COMPILE_ASSERT( (is_convertible<Child, Parent>::value), IsConvertible); 48 COMPILE_ASSERT(!(is_convertible<Parent, Child>::value), IsConvertible); 49 COMPILE_ASSERT(!(is_convertible<Parent, AStruct>::value), IsConvertible); 50 COMPILE_ASSERT( (is_convertible<int, double>::value), IsConvertible); 51 COMPILE_ASSERT( (is_convertible<int*, void*>::value), IsConvertible); 52 COMPILE_ASSERT(!(is_convertible<void*, int*>::value), IsConvertible); 56 COMPILE_ASSERT(!(is_convertible<int[10], double>::value), IsConvertible); 57 COMPILE_ASSERT(!(is_convertible<double, int[10]>::value), IsConvertible) [all...] |
template_util.h | 69 // This class is an implementation detail for is_convertible, and you 70 // don't need to know how it works to use is_convertible. For those 106 struct is_convertible struct in namespace:base
|
/external/clang/test/PCH/ |
crash-12631281.cpp | 12 template < class _T2> struct is_convertible; 13 template <> struct is_convertible<int> { typedef int type; }; struct 18 template <class _U1, class _U2, class = typename is_convertible< first_type>::type>
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/detail/ |
facade_iterator_category.hpp | 19 # include <boost/type_traits/is_convertible.hpp> 91 , is_convertible<Traversal,forward_traversal_tag> 94 is_convertible<Traversal,random_access_traversal_tag> 97 is_convertible<Traversal,bidirectional_traversal_tag> 104 is_convertible<Traversal, single_pass_traversal_tag> 107 , is_convertible<Reference, ValueParam> 120 is_convertible<T,std::input_iterator_tag> 121 , is_convertible<T,std::output_iterator_tag> 128 : is_convertible<T,incrementable_traversal_tag> 146 is_convertible< [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/ |
conversion_traits.hpp | 15 #include <boost/type_traits/is_convertible.hpp>
|
is_convertible.hpp | 45 // there are multiple versions of the is_convertible 61 // of the is_convertible typename. 395 TT_AUX_BOOL_CV_VOID_TRAIT_SPEC2(is_convertible,void,void,true) 401 BOOST_TT_AUX_BOOL_TRAIT_IMPL_SPEC2(is_convertible,void,void,true) 405 BOOST_TT_AUX_BOOL_TRAIT_IMPL_PARTIAL_SPEC2_1(typename To,is_convertible,void,To,false) 406 BOOST_TT_AUX_BOOL_TRAIT_IMPL_PARTIAL_SPEC2_1(typename From,is_convertible,From,void,false) 408 BOOST_TT_AUX_BOOL_TRAIT_IMPL_PARTIAL_SPEC2_1(typename To,is_convertible,void const,To,false) 409 BOOST_TT_AUX_BOOL_TRAIT_IMPL_PARTIAL_SPEC2_1(typename To,is_convertible,void volatile,To,false) 410 BOOST_TT_AUX_BOOL_TRAIT_IMPL_PARTIAL_SPEC2_1(typename To,is_convertible,void const volatile,To,false) 411 BOOST_TT_AUX_BOOL_TRAIT_IMPL_PARTIAL_SPEC2_1(typename From,is_convertible,From,void const,false [all...] |
/external/stlport/test/unit/ |
reference_wrapper_test.cpp | 31 CPPUNIT_CHECK( (::boost::is_convertible<rr_type, int&>::value) ); 62 CPPUNIT_CHECK( (::boost::is_convertible<crr_type, const int&>::value) );
|
/ndk/tests/device/test-gnustl-full/unit/ |
reference_wrapper_test.cpp | 31 CPPUNIT_CHECK( (::boost::is_convertible<rr_type, int&>::value) ); 62 CPPUNIT_CHECK( (::boost::is_convertible<crr_type, const int&>::value) );
|
/ndk/tests/device/test-stlport/unit/ |
reference_wrapper_test.cpp | 31 CPPUNIT_CHECK( (::boost::is_convertible<rr_type, int&>::value) ); 62 CPPUNIT_CHECK( (::boost::is_convertible<crr_type, const int&>::value) );
|
/external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/util/ |
template_util.h | 57 // This class is an implementation detail for is_convertible, and you 58 // don't need to know how it works to use is_convertible. For those 94 struct is_convertible struct in namespace:i18n::addressinput
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/ |
template_util.h | 54 // This class is an implementation detail for is_convertible, and you 55 // don't need to know how it works to use is_convertible. For those 91 struct is_convertible struct in namespace:i18n::phonenumbers
|
/external/chromium_org/third_party/webrtc/base/ |
template_util.h | 59 // This class is an implementation detail for is_convertible, and you 60 // don't need to know how it works to use is_convertible. For those 96 struct is_convertible struct in namespace:rtc
|
/external/chromium_org/third_party/webrtc/system_wrappers/interface/ |
template_util.h | 61 // This class is an implementation detail for is_convertible, and you 62 // don't need to know how it works to use is_convertible. For those 98 struct is_convertible struct in namespace:webrtc
|
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/ |
shared_ptr_Y.pass.cpp | 56 static_assert(( std::is_convertible<std::shared_ptr<A>, std::shared_ptr<B> >::value), ""); 57 static_assert((!std::is_convertible<std::shared_ptr<B>, std::shared_ptr<A> >::value), ""); 58 static_assert((!std::is_convertible<std::shared_ptr<A>, std::shared_ptr<C> >::value), "");
|
shared_ptr_Y_rv.pass.cpp | 56 static_assert(( std::is_convertible<std::shared_ptr<A>, std::shared_ptr<B> >::value), ""); 57 static_assert((!std::is_convertible<std::shared_ptr<B>, std::shared_ptr<A> >::value), ""); 58 static_assert((!std::is_convertible<std::shared_ptr<A>, std::shared_ptr<C> >::value), "");
|
/external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.const/ |
shared_ptr_Y.pass.cpp | 56 static_assert(( std::is_convertible<std::shared_ptr<A>, std::weak_ptr<B> >::value), ""); 57 static_assert((!std::is_convertible<std::weak_ptr<B>, std::shared_ptr<A> >::value), ""); 58 static_assert((!std::is_convertible<std::shared_ptr<A>, std::weak_ptr<C> >::value), "");
|
weak_ptr_Y.pass.cpp | 63 static_assert(( std::is_convertible<std::weak_ptr<A>, std::weak_ptr<B> >::value), ""); 64 static_assert((!std::is_convertible<std::weak_ptr<B>, std::weak_ptr<A> >::value), ""); 65 static_assert((!std::is_convertible<std::weak_ptr<A>, std::weak_ptr<C> >::value), "");
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.const/ |
shared_ptr_Y.pass.cpp | 56 static_assert(( std::is_convertible<std::shared_ptr<A>, std::shared_ptr<B> >::value), ""); 57 static_assert((!std::is_convertible<std::shared_ptr<B>, std::shared_ptr<A> >::value), ""); 58 static_assert((!std::is_convertible<std::shared_ptr<A>, std::shared_ptr<C> >::value), "");
|
shared_ptr_Y_rv.pass.cpp | 56 static_assert(( std::is_convertible<std::shared_ptr<A>, std::shared_ptr<B> >::value), ""); 57 static_assert((!std::is_convertible<std::shared_ptr<B>, std::shared_ptr<A> >::value), ""); 58 static_assert((!std::is_convertible<std::shared_ptr<A>, std::shared_ptr<C> >::value), "");
|