/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.special/ |
D | long_double_float_implicit.pass.cpp | 24 const std::complex<float> cd(2.5, 3.5); in main() local 25 std::complex<long double> cf = cd; in main() 26 assert(cf.real() == cd.real()); in main() 27 assert(cf.imag() == cd.imag()); in main() 31 constexpr std::complex<float> cd(2.5, 3.5); in main() local 32 constexpr std::complex<long double> cf = cd; in main() 33 static_assert(cf.real() == cd.real(), ""); in main() 34 static_assert(cf.imag() == cd.imag(), ""); in main()
|
D | float_double_explicit.pass.cpp | 24 const std::complex<double> cd(2.5, 3.5); in main() local 25 std::complex<float> cf(cd); in main() 26 assert(cf.real() == cd.real()); in main() 27 assert(cf.imag() == cd.imag()); in main() 31 constexpr std::complex<double> cd(2.5, 3.5); in main() local 32 constexpr std::complex<float> cf(cd); in main() 33 static_assert(cf.real() == cd.real(), ""); in main() 34 static_assert(cf.imag() == cd.imag(), ""); in main()
|
D | double_float_explicit.pass.cpp | 24 const std::complex<float> cd(2.5, 3.5); in main() local 25 std::complex<double> cf(cd); in main() 26 assert(cf.real() == cd.real()); in main() 27 assert(cf.imag() == cd.imag()); in main() 31 constexpr std::complex<float> cd(2.5, 3.5); in main() local 32 constexpr std::complex<double> cf(cd); in main() 33 static_assert(cf.real() == cd.real(), ""); in main() 34 static_assert(cf.imag() == cd.imag(), ""); in main()
|
D | double_float_implicit.pass.cpp | 24 const std::complex<float> cd(2.5, 3.5); in main() local 25 std::complex<double> cf = cd; in main() 26 assert(cf.real() == cd.real()); in main() 27 assert(cf.imag() == cd.imag()); in main() 31 constexpr std::complex<float> cd(2.5, 3.5); in main() local 32 constexpr std::complex<double> cf = cd; in main() 33 static_assert(cf.real() == cd.real(), ""); in main() 34 static_assert(cf.imag() == cd.imag(), ""); in main()
|
D | long_double_double_explicit.pass.cpp | 24 const std::complex<double> cd(2.5, 3.5); in main() local 25 std::complex<long double> cf(cd); in main() 26 assert(cf.real() == cd.real()); in main() 27 assert(cf.imag() == cd.imag()); in main() 31 constexpr std::complex<double> cd(2.5, 3.5); in main() local 32 constexpr std::complex<long double> cf(cd); in main() 33 static_assert(cf.real() == cd.real(), ""); in main() 34 static_assert(cf.imag() == cd.imag(), ""); in main()
|
D | long_double_float_explicit.pass.cpp | 24 const std::complex<float> cd(2.5, 3.5); in main() local 25 std::complex<long double> cf(cd); in main() 26 assert(cf.real() == cd.real()); in main() 27 assert(cf.imag() == cd.imag()); in main() 31 constexpr std::complex<float> cd(2.5, 3.5); in main() local 32 constexpr std::complex<long double> cf(cd); in main() 33 static_assert(cf.real() == cd.real(), ""); in main() 34 static_assert(cf.imag() == cd.imag(), ""); in main()
|
D | long_double_double_implicit.pass.cpp | 24 const std::complex<double> cd(2.5, 3.5); in main() local 25 std::complex<long double> cf = cd; in main() 26 assert(cf.real() == cd.real()); in main() 27 assert(cf.imag() == cd.imag()); in main() 31 constexpr std::complex<double> cd(2.5, 3.5); in main() local 32 constexpr std::complex<long double> cf = cd; in main() 33 static_assert(cf.real() == cd.real(), ""); in main() 34 static_assert(cf.imag() == cd.imag(), ""); in main()
|
D | float_long_double_explicit.pass.cpp | 24 const std::complex<long double> cd(2.5, 3.5); in main() local 25 std::complex<float> cf(cd); in main() 26 assert(cf.real() == cd.real()); in main() 27 assert(cf.imag() == cd.imag()); in main() 31 constexpr std::complex<long double> cd(2.5, 3.5); in main() local 32 constexpr std::complex<float> cf(cd); in main() 33 static_assert(cf.real() == cd.real(), ""); in main() 34 static_assert(cf.imag() == cd.imag(), ""); in main()
|
D | double_long_double_explicit.pass.cpp | 24 const std::complex<long double> cd(2.5, 3.5); in main() local 25 std::complex<double> cf(cd); in main() 26 assert(cf.real() == cd.real()); in main() 27 assert(cf.imag() == cd.imag()); in main() 31 constexpr std::complex<long double> cd(2.5, 3.5); in main() local 32 constexpr std::complex<double> cf(cd); in main() 33 static_assert(cf.real() == cd.real(), ""); in main() 34 static_assert(cf.imag() == cd.imag(), ""); in main()
|
D | float_long_double_implicit.fail.cpp | 23 const std::complex<long double> cd(2.5, 3.5); in main() local 24 std::complex<float> cf = cd; in main() 25 assert(cf.real() == cd.real()); in main() 26 assert(cf.imag() == cd.imag()); in main()
|
D | double_long_double_implicit.fail.cpp | 23 const std::complex<long double> cd(2.5, 3.5); in main() local 24 std::complex<double> cf = cd; in main() 25 assert(cf.real() == cd.real()); in main() 26 assert(cf.imag() == cd.imag()); in main()
|
D | float_double_implicit.fail.cpp | 23 const std::complex<double> cd(2.5, 3.5); in main() local 24 std::complex<float> cf = cd; in main() 25 assert(cf.real() == cd.real()); in main() 26 assert(cf.imag() == cd.imag()); in main()
|
/ndk/tests/device/test-libc++-shared-full/ |
D | BROKEN_RUN | 18 cd ~/libcxx-test/localization/locale.categories/category.collate/locale.collate.byname 23 cd ~/libcxx-test/localization/locale.categories/category.ctype/locale.ctype.byname 28 cd ~/libcxx-test/localization/locale.categories/category.ctype/locale.ctype.byname 33 cd ~/libcxx-test/localization/locale.categories/category.ctype/locale.ctype.byname 38 cd ~/libcxx-test/localization/locale.categories/category.ctype/locale.ctype.byname 43 cd ~/libcxx-test/localization/locale.categories/category.ctype/locale.ctype.byname 48 cd ~/libcxx-test/localization/locale.categories/category.ctype/locale.ctype.byname 53 cd ~/libcxx-test/localization/locale.categories/category.ctype/locale.ctype.byname 58 cd ~/libcxx-test/localization/locale.categories/category.ctype/locale.ctype.byname 63 cd ~/libcxx-test/localization/locale.categories/category.ctype/locale.ctype.byname [all …]
|
/ndk/tests/device/test-libc++-static-full/ |
D | BROKEN_RUN | 18 cd ~/libcxx-test/localization/locale.categories/category.collate/locale.collate.byname 23 cd ~/libcxx-test/localization/locale.categories/category.ctype/locale.ctype.byname 28 cd ~/libcxx-test/localization/locale.categories/category.ctype/locale.ctype.byname 33 cd ~/libcxx-test/localization/locale.categories/category.ctype/locale.ctype.byname 38 cd ~/libcxx-test/localization/locale.categories/category.ctype/locale.ctype.byname 43 cd ~/libcxx-test/localization/locale.categories/category.ctype/locale.ctype.byname 48 cd ~/libcxx-test/localization/locale.categories/category.ctype/locale.ctype.byname 53 cd ~/libcxx-test/localization/locale.categories/category.ctype/locale.ctype.byname 58 cd ~/libcxx-test/localization/locale.categories/category.ctype/locale.ctype.byname 63 cd ~/libcxx-test/localization/locale.categories/category.ctype/locale.ctype.byname [all …]
|
/ndk/sources/host-tools/make-3.81/config/ |
D | iconv.m4 | 43 [iconv_t cd = iconv_open("",""); 44 iconv(cd,NULL,NULL,NULL,NULL); 45 iconv_close(cd);], 52 [iconv_t cd = iconv_open("",""); 53 iconv(cd,NULL,NULL,NULL,NULL); 54 iconv_close(cd);], 91 size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); 96 …am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t …
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/ |
D | unit_test_log_formatter.hpp | 101 …virtual void log_exception( std::ostream& os, log_checkpoint_data const& cd, execution_exce… in log_exception() argument 104 log_exception( os, cd, ex.what() ); in log_exception()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | tgmath_h.pass.cpp | 20 std::complex<double> cd; in main() local
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/ |
D | ctgmath.pass.cpp | 20 std::complex<double> cd; in main() local
|
/ndk/sources/host-tools/make-3.81/ |
D | subproc.bat | 20 cd w32\subproc 25 cd ..\..
|
D | dosbuild.bat | 46 @cd glob 52 cd ..
|
/ndk/sources/host-tools/make-3.81/po/ |
D | Makefile.in.in | 68 test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ 70 …cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && … 134 test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ 136 cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot; \ 171 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu… 172 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 175 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ 220 …if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/nu… 221 link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ 224 (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ [all …]
|
D | Rules-quot | 17 …if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/s… 22 cd $(srcdir); \
|
/ndk/sources/android/support/src/musl-locale/ |
D | iconv.c | 121 int iconv_close(iconv_t cd) in iconv_close() argument 161 unsigned long cd = (unsigned long)cd0; in iconv() local 162 unsigned to = cd & 0xffff; in iconv() 163 unsigned from = cd >> 16; in iconv()
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | deque_test.cpp | 159 deque<int> const& cd = d; in at() local 164 CPPUNIT_ASSERT( cd.at(0) == 20 ); in at()
|
/ndk/tests/device/test-stlport/unit/ |
D | deque_test.cpp | 159 deque<int> const& cd = d; in at() local 164 CPPUNIT_ASSERT( cd.at(0) == 20 ); in at()
|