Searched refs:cd (Results 1 - 24 of 24) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.special/
H A Ddouble_long_double_implicit.fail.cpp23 const std::complex<long double> cd(2.5, 3.5);
24 std::complex<double> cf = cd;
25 assert(cf.real() == cd.real());
26 assert(cf.imag() == cd.imag());
H A Dfloat_double_implicit.fail.cpp23 const std::complex<double> cd(2.5, 3.5);
24 std::complex<float> cf = cd;
25 assert(cf.real() == cd.real());
26 assert(cf.imag() == cd.imag());
H A Dfloat_long_double_implicit.fail.cpp23 const std::complex<long double> cd(2.5, 3.5);
24 std::complex<float> cf = cd;
25 assert(cf.real() == cd.real());
26 assert(cf.imag() == cd.imag());
H A Ddouble_float_explicit.pass.cpp24 const std::complex<float> cd(2.5, 3.5);
25 std::complex<double> cf(cd);
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
31 constexpr std::complex<float> cd(2.5, 3.5);
32 constexpr std::complex<double> cf(cd);
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
H A Ddouble_float_implicit.pass.cpp24 const std::complex<float> cd(2.5, 3.5);
25 std::complex<double> cf = cd;
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
31 constexpr std::complex<float> cd(2.5, 3.5);
32 constexpr std::complex<double> cf = cd;
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
H A Ddouble_long_double_explicit.pass.cpp24 const std::complex<long double> cd(2.5, 3.5);
25 std::complex<double> cf(cd);
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
31 constexpr std::complex<long double> cd(2.5, 3.5);
32 constexpr std::complex<double> cf(cd);
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
H A Dfloat_double_explicit.pass.cpp24 const std::complex<double> cd(2.5, 3.5);
25 std::complex<float> cf(cd);
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
31 constexpr std::complex<double> cd(2.5, 3.5);
32 constexpr std::complex<float> cf(cd);
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
H A Dfloat_long_double_explicit.pass.cpp24 const std::complex<long double> cd(2.5, 3.5);
25 std::complex<float> cf(cd);
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
31 constexpr std::complex<long double> cd(2.5, 3.5);
32 constexpr std::complex<float> cf(cd);
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
H A Dlong_double_double_explicit.pass.cpp24 const std::complex<double> cd(2.5, 3.5);
25 std::complex<long double> cf(cd);
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
31 constexpr std::complex<double> cd(2.5, 3.5);
32 constexpr std::complex<long double> cf(cd);
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
H A Dlong_double_double_implicit.pass.cpp24 const std::complex<double> cd(2.5, 3.5);
25 std::complex<long double> cf = cd;
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
31 constexpr std::complex<double> cd(2.5, 3.5);
32 constexpr std::complex<long double> cf = cd;
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
H A Dlong_double_float_explicit.pass.cpp24 const std::complex<float> cd(2.5, 3.5);
25 std::complex<long double> cf(cd);
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
31 constexpr std::complex<float> cd(2.5, 3.5);
32 constexpr std::complex<long double> cf(cd);
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
H A Dlong_double_float_implicit.pass.cpp24 const std::complex<float> cd(2.5, 3.5);
25 std::complex<long double> cf = cd;
26 assert(cf.real() == cd.real());
27 assert(cf.imag() == cd.imag());
31 constexpr std::complex<float> cd(2.5, 3.5);
32 constexpr std::complex<long double> cf = cd;
33 static_assert(cf.real() == cd.real(), "");
34 static_assert(cf.imag() == cd.imag(), "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
H A Dtgmath_h.pass.cpp20 std::complex<double> cd; local
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
H A Dctgmath.pass.cpp20 std::complex<double> cd; local
/ndk/sources/host-tools/make-3.81/
H A Dsubproc.bat20 cd w32\subproc
25 cd ..\..
H A Dbuild_w32.bat19 cd w32\subproc
22 cd ..\..
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
H A Dunit_test_log_formatter.hpp101 virtual void log_exception( std::ostream& os, log_checkpoint_data const& cd, execution_exception const& ex ) argument
104 log_exception( os, cd, ex.what() );
/ndk/sources/android/support/src/musl-locale/
H A Diconv.c121 int iconv_close(iconv_t cd) argument
161 unsigned long cd = (unsigned long)cd0; local
162 unsigned to = cd & 0xffff;
163 unsigned from = cd >> 16;
/ndk/tests/device/test-gnustl-full/unit/
H A Ddeque_test.cpp159 deque<int> const& cd = d; local
164 CPPUNIT_ASSERT( cd.at(0) == 20 );
H A Dtype_traits_test.cpp262 const derived cd = d; local
268 CPPUNIT_CHECK( is_convertible(cd, b) == 1 );
271 //CPPUNIT_CHECK( is_cv_convertible(cd, b) == 0 );
/ndk/tests/device/test-stlport/unit/
H A Ddeque_test.cpp159 deque<int> const& cd = d; local
164 CPPUNIT_ASSERT( cd.at(0) == 20 );
H A Dtype_traits_test.cpp262 const derived cd = d; local
268 CPPUNIT_CHECK( is_convertible(cd, b) == 1 );
271 //CPPUNIT_CHECK( is_cv_convertible(cd, b) == 0 );
/ndk/build/core/
H A Ddefinitions.mk1484 # cd ($dir $(_SRC)) ; llvm-rs-cc $(notdir $(_SRC)) -o ...full-path...
1490 cd $$(call host-path,$$(dir $$(PRIVATE_RS_SRC))) && $$(PRIVATE_RS_CC) -o $$(call host-path,$$(abspath $$(dir $$(PRIVATE_OBJ))))/ -d $$(abspath $$(call host-path,$$(dir $$(PRIVATE_OBJ)))) -MD -reflect-c++ $$(PRIVATE_RS_FLAGS) $$(notdir $$(PRIVATE_RS_SRC))
1500 cd $$(call host-path,$$(dir $$(PRIVATE_RS_SRC))) && $$(PRIVATE_RS_CC) -o $$(call host-path,$$(abspath $$(dir $$(PRIVATE_OBJ))))/ -d $$(abspath $$(call host-path,$$(dir $$(PRIVATE_OBJ)))) -MD -reflect-c++ $$(PRIVATE_RS_FLAGS) $$(notdir $$(PRIVATE_RS_SRC))
/ndk/sources/host-tools/sed-4.2.1/build-aux/
H A Dtexinfo.tex8184 \gdef^^cd{\'I}
8304 \gdef^^cd{\'I}

Completed in 1005 milliseconds