/external/libcxx/test/std/numerics/complex.number/complex.special/ |
double_float_implicit.pass.cpp | 25 std::complex<double> cf = cd; local 26 assert(cf.real() == cd.real()); 27 assert(cf.imag() == cd.imag()); 32 constexpr std::complex<double> cf = cd; local 33 static_assert(cf.real() == cd.real(), ""); 34 static_assert(cf.imag() == cd.imag(), "");
|
double_long_double_implicit.fail.cpp | 24 std::complex<double> cf = cd; local 25 assert(cf.real() == cd.real()); 26 assert(cf.imag() == cd.imag());
|
float_double_implicit.fail.cpp | 24 std::complex<float> cf = cd; local 25 assert(cf.real() == cd.real()); 26 assert(cf.imag() == cd.imag());
|
float_long_double_implicit.fail.cpp | 24 std::complex<float> cf = cd; local 25 assert(cf.real() == cd.real()); 26 assert(cf.imag() == cd.imag());
|
long_double_double_implicit.pass.cpp | 25 std::complex<long double> cf = cd; local 26 assert(cf.real() == cd.real()); 27 assert(cf.imag() == cd.imag()); 32 constexpr std::complex<long double> cf = cd; local 33 static_assert(cf.real() == cd.real(), ""); 34 static_assert(cf.imag() == cd.imag(), "");
|
long_double_float_implicit.pass.cpp | 25 std::complex<long double> cf = cd; local 26 assert(cf.real() == cd.real()); 27 assert(cf.imag() == cd.imag()); 32 constexpr std::complex<long double> cf = cd; local 33 static_assert(cf.real() == cd.real(), ""); 34 static_assert(cf.imag() == cd.imag(), "");
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.special/ |
double_float_implicit.pass.cpp | 25 std::complex<double> cf = cd; local 26 assert(cf.real() == cd.real()); 27 assert(cf.imag() == cd.imag()); 32 constexpr std::complex<double> cf = cd; local 33 static_assert(cf.real() == cd.real(), ""); 34 static_assert(cf.imag() == cd.imag(), "");
|
double_long_double_implicit.fail.cpp | 24 std::complex<double> cf = cd; local 25 assert(cf.real() == cd.real()); 26 assert(cf.imag() == cd.imag());
|
float_double_implicit.fail.cpp | 24 std::complex<float> cf = cd; local 25 assert(cf.real() == cd.real()); 26 assert(cf.imag() == cd.imag());
|
float_long_double_implicit.fail.cpp | 24 std::complex<float> cf = cd; local 25 assert(cf.real() == cd.real()); 26 assert(cf.imag() == cd.imag());
|
long_double_double_implicit.pass.cpp | 25 std::complex<long double> cf = cd; local 26 assert(cf.real() == cd.real()); 27 assert(cf.imag() == cd.imag()); 32 constexpr std::complex<long double> cf = cd; local 33 static_assert(cf.real() == cd.real(), ""); 34 static_assert(cf.imag() == cd.imag(), "");
|
long_double_float_implicit.pass.cpp | 25 std::complex<long double> cf = cd; local 26 assert(cf.real() == cd.real()); 27 assert(cf.imag() == cd.imag()); 32 constexpr std::complex<long double> cf = cd; local 33 static_assert(cf.real() == cd.real(), ""); 34 static_assert(cf.imag() == cd.imag(), "");
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/complex.number/complex.special/ |
double_float_implicit.pass.cpp | 25 std::complex<double> cf = cd; local 26 assert(cf.real() == cd.real()); 27 assert(cf.imag() == cd.imag()); 32 constexpr std::complex<double> cf = cd; local 33 static_assert(cf.real() == cd.real(), ""); 34 static_assert(cf.imag() == cd.imag(), "");
|
double_long_double_implicit.fail.cpp | 24 std::complex<double> cf = cd; local 25 assert(cf.real() == cd.real()); 26 assert(cf.imag() == cd.imag());
|
float_double_implicit.fail.cpp | 24 std::complex<float> cf = cd; local 25 assert(cf.real() == cd.real()); 26 assert(cf.imag() == cd.imag());
|
float_long_double_implicit.fail.cpp | 24 std::complex<float> cf = cd; local 25 assert(cf.real() == cd.real()); 26 assert(cf.imag() == cd.imag());
|
long_double_double_implicit.pass.cpp | 25 std::complex<long double> cf = cd; local 26 assert(cf.real() == cd.real()); 27 assert(cf.imag() == cd.imag()); 32 constexpr std::complex<long double> cf = cd; local 33 static_assert(cf.real() == cd.real(), ""); 34 static_assert(cf.imag() == cd.imag(), "");
|
long_double_float_implicit.pass.cpp | 25 std::complex<long double> cf = cd; local 26 assert(cf.real() == cd.real()); 27 assert(cf.imag() == cd.imag()); 32 constexpr std::complex<long double> cf = cd; local 33 static_assert(cf.real() == cd.real(), ""); 34 static_assert(cf.imag() == cd.imag(), "");
|
/external/libcxx/test/std/utilities/utility/pairs/pair.astuple/ |
pairs.by.type1.fail.cpp | 18 typedef std::complex<float> cf; typedef 20 assert (( std::get<cf>(t1) == cf {1,2} )); // no such type
|
pairs.by.type2.fail.cpp | 18 typedef std::complex<float> cf; typedef
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/ |
tuple.by.type1.fail.cpp | 19 typedef std::complex<float> cf; typedef 21 assert ( std::get<cf>(t1) == cf {1,2} ); // no such type
|
tuple.by.type2.fail.cpp | 19 typedef std::complex<float> cf; typedef 20 auto t1 = std::make_tuple<int, int, std::string, cf> ( 42, 21, "Hi", { 1,2 } );
|
tuple.by.type3.fail.cpp | 19 typedef std::complex<float> cf; typedef 20 auto t1 = std::make_tuple<double, int, std::string, cf, int> ( 42, 21, "Hi", { 1,2 } );
|
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pair.astuple/ |
pairs.by.type1.fail.cpp | 18 typedef std::complex<float> cf; typedef 20 assert ( std::get<cf>(t1) == cf {1,2} ); // no such type
|
pairs.by.type2.fail.cpp | 18 typedef std::complex<float> cf; typedef
|