HomeSort by relevance Sort by last modified time
    Searched refs:is_convertible (Results 1 - 25 of 112) sorted by null

1 2 3 4 5

  /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...]
  /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), "");
96 static_assert((!std::is_convertible<Array, Array&>::value), "")
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/
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_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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.future_error/
types.pass.cpp 19 static_assert((std::is_convertible<std::future_error*,
  /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...]
  /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>
  /external/chromium/base/
template_util_unittest.cc 44 // EXPECT_TRUE( (is_convertible < Child), (Parent > ::value));
47 EXPECT_TRUE( (is_convertible<Child, Parent>::value) );
48 EXPECT_FALSE( (is_convertible<Parent, Child>::value) );
49 EXPECT_FALSE( (is_convertible<Parent, AStruct>::value) );
51 EXPECT_TRUE( (is_convertible<int, double>::value) );
52 EXPECT_TRUE( (is_convertible<int*, void*>::value) );
53 EXPECT_FALSE( (is_convertible<void*, int*>::value) );
  /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...]
config_def.hpp 88 # define BOOST_NO_IS_CONVERTIBLE // "is_convertible doesn't work for simple types"
97 #include <boost/type_traits/is_convertible.hpp>
109 bool x = boost::is_convertible<foo<int const*>, foo<int*> >::value;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istream.iterator/
types.pass.cpp 29 static_assert((std::is_convertible<I1,
36 static_assert((std::is_convertible<I2,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostream.iterator/
types.pass.cpp 29 static_assert((std::is_convertible<I1,
35 static_assert((std::is_convertible<I2,
  /ndk/sources/cxx-stl/llvm-libc++/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 56 static_assert(( std::is_convertible<std::weak_ptr<A>, std::weak_ptr<B> >::value), "");
57 static_assert((!std::is_convertible<std::weak_ptr<B>, std::weak_ptr<A> >::value), "");
58 static_assert((!std::is_convertible<std::weak_ptr<A>, std::weak_ptr<C> >::value), "");
  /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/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/istreambuf.iterator/
types.pass.cpp 33 static_assert((std::is_convertible<I1,
43 static_assert((std::is_convertible<I2,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/stream.iterators/ostreambuf.iterator/
types.pass.cpp 30 static_assert((std::is_convertible<I1,
38 static_assert((std::is_convertible<I2,
  /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) );
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_pair.h 114 enable_if<__and_<is_convertible<const _U1&, _T1>,
115 is_convertible<const _U2&, _T2>>::value>::type>
124 enable_if<is_convertible<_U1, _T1>::value>::type>
129 enable_if<is_convertible<_U2, _T2>::value>::type>
134 enable_if<__and_<is_convertible<_U1, _T1>,
135 is_convertible<_U2, _T2>>::value>::type>
140 enable_if<__and_<is_convertible<_U1, _T1>,
141 is_convertible<_U2, _T2>>::value>::type>
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_pair.h 114 enable_if<__and_<is_convertible<const _U1&, _T1>,
115 is_convertible<const _U2&, _T2>>::value>::type>
124 enable_if<is_convertible<_U1, _T1>::value>::type>
129 enable_if<is_convertible<_U2, _T2>::value>::type>
134 enable_if<__and_<is_convertible<_U1, _T1>,
135 is_convertible<_U2, _T2>>::value>::type>
140 enable_if<__and_<is_convertible<_U1, _T1>,
141 is_convertible<_U2, _T2>>::value>::type>
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
stl_pair.h 122 enable_if<__and_<is_convertible<const _U1&, _T1>,
123 is_convertible<const _U2&, _T2>>::value>::type>
132 enable_if<is_convertible<_U1, _T1>::value>::type>
137 enable_if<is_convertible<_U2, _T2>::value>::type>
142 enable_if<__and_<is_convertible<_U1, _T1>,
143 is_convertible<_U2, _T2>>::value>::type>
148 enable_if<__and_<is_convertible<_U1, _T1>,
149 is_convertible<_U2, _T2>>::value>::type>
  /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), "");

Completed in 1510 milliseconds

1 2 3 4 5