/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(), "");
|
/ndk/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(), "");
|
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/ |
tuple.by.type1.fail.cpp | 21 typedef std::complex<float> cf; typedef 23 assert (( std::get<cf>(t1) == cf {1,2} )); // no such type
|
tuple.by.type2.fail.cpp | 21 typedef std::complex<float> cf; typedef 22 auto t1 = std::make_tuple<int, int, std::string, cf> ( 42, 21, "Hi", { 1,2 } );
|
tuple.by.type3.fail.cpp | 21 typedef std::complex<float> cf; typedef 22 auto t1 = std::make_tuple<double, int, std::string, cf, int> ( 42, 21, "Hi", { 1,2 } );
|
/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
|
/ndk/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 } );
|
/ndk/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
|
/external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/ |
mask.pass.cpp | 27 typedef std::ctype<char> CF; 28 const CF& cf = std::use_facet<CF>(l); local 39 assert( cf.is(CF::upper, 'A')); 41 assert(!cf.is(CF::lower, 'A')); 43 assert( cf.is(CF::alpha, 'A')) [all...] |
/external/skia/src/core/ |
SkPaintPriv.cpp | 16 SkColorFilter* cf = paint.getColorFilter(); local 17 return cf && !(cf->getFlags() & SkColorFilter::kAlphaUnchanged_Flag);
|
/dalvik/dx/src/com/android/dx/command/dump/ |
ClassDumper.java | 19 import com.android.dx.cf.direct.DirectClassFile; 20 import com.android.dx.cf.direct.StdAttributeFactory; 61 DirectClassFile cf = local 64 cf.setAttributeFactory(StdAttributeFactory.THE_ONE); 65 cf.setObserver(this); 66 cf.getMagic(); // Force parsing to happen.
|