HomeSort by relevance Sort by last modified time
    Searched refs:is_same (Results 451 - 475 of 1631) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/pointer.traits/pointer.traits.types/
rebind.pass.cpp 59 static_assert((std::is_same<std::pointer_traits<A<int*> >::rebind<double*>, A<double*> >::value), "");
60 static_assert((std::is_same<std::pointer_traits<B<int> >::rebind<double>, B1<double> >::value), "");
61 static_assert((std::is_same<std::pointer_traits<C<char, int> >::rebind<double>, C<double, int> >::value), "");
62 static_assert((std::is_same<std::pointer_traits<D<char, int> >::rebind<double>, D1<double, int> >::value), "");
64 static_assert((std::is_same<std::pointer_traits<A<int*> >::rebind<double*>::other, A<double*> >::value), "");
65 static_assert((std::is_same<std::pointer_traits<B<int> >::rebind<double>::other, B1<double> >::value), "");
66 static_assert((std::is_same<std::pointer_traits<C<char, int> >::rebind<double>::other, C<double, int> >::value), "");
67 static_assert((std::is_same<std::pointer_traits<D<char, int> >::rebind<double>::other, D1<double, int> >::value), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/
pointer_type.pass.cpp 28 static_assert((std::is_same<P::pointer, int*>::value), "");
32 static_assert((std::is_same<P::pointer, Deleter::pointer>::value), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/
pointer_type.pass.cpp 28 static_assert((std::is_same<P::pointer, int*>::value), "");
32 static_assert((std::is_same<P::pointer, Deleter::pointer>::value), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.trans/meta.trans.other/
decay.pass.cpp 19 static_assert((std::is_same<typename std::decay<T>::type, U>::value), "");
21 static_assert((std::is_same<std::decay_t<T>, U>::value), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.trans/meta.trans.ptr/
add_pointer.pass.cpp 19 static_assert((std::is_same<typename std::add_pointer<T>::type, U>::value), "");
21 static_assert((std::is_same<std::add_pointer_t<T>, U>::value), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.trans/meta.trans.ref/
add_lvalue_ref.pass.cpp 19 static_assert((std::is_same<typename std::add_lvalue_reference<T>::type, U>::value), "");
21 static_assert((std::is_same<std::add_lvalue_reference_t<T>, U>::value), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/
types.pass.cpp 25 static_assert((std::is_same<D::rep, long>::value), "");
26 static_assert((std::is_same<D::period, std::ratio<3, 2> >::value), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.helper/
tuple_element.pass.cpp 27 static_assert((std::is_same<typename std::tuple_element<N, T>::type, U>::value), "");
28 static_assert((std::is_same<typename std::tuple_element<N, const T>::type, const U>::value), "");
29 static_assert((std::is_same<typename std::tuple_element<N, volatile T>::type, volatile U>::value), "");
30 static_assert((std::is_same<typename std::tuple_element<N, const volatile T>::type, const volatile U>::value), "");
32 static_assert((std::is_same<typename std::tuple_element_t<N, T>, U>::value), "");
33 static_assert((std::is_same<typename std::tuple_element_t<N, const T>, const U>::value), "");
34 static_assert((std::is_same<typename std::tuple_element_t<N, volatile T>, volatile U>::value), "");
35 static_assert((std::is_same<typename std::tuple_element_t<N, const volatile T>, const volatile U>::value), "");
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/declval/
declval.pass.cpp 26 static_assert((std::is_same<decltype(std::declval<A>()), A&&>::value), "");
28 static_assert((std::is_same<decltype(std::declval<A>()), A>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/iterators/stream.iterators/ostreambuf.iterator/
types.pass.cpp 32 static_assert((std::is_same<I1::char_type, char>::value), "");
33 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), "");
34 static_assert((std::is_same<I1::streambuf_type, std::streambuf>::value), "");
35 static_assert((std::is_same<I1::ostream_type, std::ostream>::value), "");
40 static_assert((std::is_same<I2::char_type, wchar_t>::value), "");
41 static_assert((std::is_same<I2::traits_type, std::char_traits<wchar_t> >::value), "");
42 static_assert((std::is_same<I2::streambuf_type, std::wstreambuf>::value), "");
43 static_assert((std::is_same<I2::ostream_type, std::wostream>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.adapt/rand.adapt.disc/
result_type.pass.cpp 25 static_assert((std::is_same<
33 static_assert((std::is_same<
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.bin/
types.pass.cpp 25 static_assert((std::is_same<result_type, int>::value), "");
30 static_assert((std::is_same<result_type, long>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.geo/
types.pass.cpp 25 static_assert((std::is_same<result_type, int>::value), "");
30 static_assert((std::is_same<result_type, long>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.dis/rand.dist.bern/rand.dist.bern.negbin/
types.pass.cpp 25 static_assert((std::is_same<result_type, int>::value), "");
30 static_assert((std::is_same<result_type, long>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.cauchy/
types.pass.cpp 27 static_assert((std::is_same<result_type, double>::value), "");
32 static_assert((std::is_same<result_type, float>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.chisq/
types.pass.cpp 27 static_assert((std::is_same<result_type, double>::value), "");
32 static_assert((std::is_same<result_type, float>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.f/
types.pass.cpp 27 static_assert((std::is_same<result_type, double>::value), "");
32 static_assert((std::is_same<result_type, float>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/
types.pass.cpp 27 static_assert((std::is_same<result_type, double>::value), "");
32 static_assert((std::is_same<result_type, float>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.normal/
types.pass.cpp 27 static_assert((std::is_same<result_type, double>::value), "");
32 static_assert((std::is_same<result_type, float>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.t/
types.pass.cpp 27 static_assert((std::is_same<result_type, double>::value), "");
32 static_assert((std::is_same<result_type, float>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.exp/
types.pass.cpp 27 static_assert((std::is_same<result_type, double>::value), "");
32 static_assert((std::is_same<result_type, float>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.extreme/
types.pass.cpp 27 static_assert((std::is_same<result_type, double>::value), "");
32 static_assert((std::is_same<result_type, float>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.gamma/
types.pass.cpp 27 static_assert((std::is_same<result_type, double>::value), "");
32 static_assert((std::is_same<result_type, float>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.poisson/
types.pass.cpp 27 static_assert((std::is_same<result_type, int>::value), "");
32 static_assert((std::is_same<result_type, unsigned long long>::value), "");
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.dis/rand.dist.pois/rand.dist.pois.weibull/
types.pass.cpp 27 static_assert((std::is_same<result_type, double>::value), "");
32 static_assert((std::is_same<result_type, float>::value), "");

Completed in 515 milliseconds

<<11121314151617181920>>