/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/std.ios.manip/floatfield.manip/ |
D | fixed.pass.cpp | 26 std::ios_base& r = std::fixed(ios); in main() 28 assert(ios.flags() & std::ios::fixed); in main()
|
D | defaultfloat.pass.cpp | 28 assert(!(ios.flags() & std::ios::fixed)); in main()
|
D | hexfloat.pass.cpp | 28 assert(ios.flags() & std::ios::fixed); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/ios.base/ios.types/ios_fmtflags/ |
D | fmtflags.pass.cpp | 40 assert(std::ios_base::fixed); in main() 58 & std::ios_base::fixed in main() 80 | std::ios_base::fixed)); in main()
|
/ndk/sources/host-tools/nawk-20071023/ |
D | FIXES | 32 fixed memory fault caused by out of order test in setsval. 40 fixed some null pointer refs calling adjbuf. 43 fixed a bug in matching the null RE in sub and gsub. thanks to al aho 47 fixed quotation in b.c; thanks to Hal Pratt and the Princeton Dante 54 removed the obsolete -V argument; fixed --version to print the 57 fixed wording and an outright error in the usage message; thanks to igor 60 fixed a bug in -d that caused core dump if no program followed. 75 core dump on linux with BEGIN {nextfile}, now fixed. 86 fixed infinite loop in parsing, originally found by brian tsang. 101 fixed a couple of overflow problems with ridiculous field numbers: [all …]
|
/ndk/tests/device/issue39680-chrono-resolution/jni/ |
D | issue39680-chrono-resolution.cpp | 27 cout << fixed << double(TT::num)/TT::den in printClockData() 33 cout << fixed << double(P::num)/P::den << " seconds" << endl; in printClockData()
|
/ndk/tests/device/test-stlport/unit/ |
D | num_put_get_test.cpp | 174 str << fixed << limits::max(); in check_get_float() 430 ostr << fixed << 1.23457e+17f; in num_put_float() 440 ostr << fixed << showpos << 1.23457e+17f; in num_put_float() 450 ostr << fixed << showpos << setprecision(100) << 1.23457e+17f; in num_put_float() 470 ostr << fixed << setprecision(8) << setw(30) << setfill('0') << 0.12345678f; in num_put_float() 478 ostr << fixed << showpos << setprecision(8) << setw(30) << setfill('0') << 0.12345678f; in num_put_float() 486 … ostr << fixed << showpos << setprecision(8) << setw(30) << left << setfill('0') << 0.12345678f; in num_put_float() 494 …ostr << fixed << showpos << setprecision(8) << setw(30) << internal << setfill('0') << 0.12345678f; in num_put_float() 502 ostr << fixed << showpos << setprecision(100) << 1.234567e+17; in num_put_float() 513 ostr << fixed << showpos << setprecision(100) << 1.234567e+17l; in num_put_float() [all …]
|
/ndk/tests/device/test-gnustl-full/unit/ |
D | num_put_get_test.cpp | 174 str << fixed << limits::max(); in check_get_float() 430 ostr << fixed << 1.23457e+17f; in num_put_float() 440 ostr << fixed << showpos << 1.23457e+17f; in num_put_float() 450 ostr << fixed << showpos << setprecision(100) << 1.23457e+17f; in num_put_float() 470 ostr << fixed << setprecision(8) << setw(30) << setfill('0') << 0.12345678f; in num_put_float() 478 ostr << fixed << showpos << setprecision(8) << setw(30) << setfill('0') << 0.12345678f; in num_put_float() 486 … ostr << fixed << showpos << setprecision(8) << setw(30) << left << setfill('0') << 0.12345678f; in num_put_float() 494 …ostr << fixed << showpos << setprecision(8) << setw(30) << internal << setfill('0') << 0.12345678f; in num_put_float() 502 ostr << fixed << showpos << setprecision(100) << 1.234567e+17; in num_put_float() 513 ostr << fixed << showpos << setprecision(100) << 1.234567e+17l; in num_put_float() [all …]
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _ios_base.h | 75 _STLP_STATIC_CONSTANT(int, fixed = 0x0040); 86 _STLP_STATIC_CONSTANT(int, floatfield = scientific | fixed); 334 inline ios_base& _STLP_CALL fixed(ios_base& __s) in fixed() function 335 { __s.setf(ios_base::fixed, ios_base::floatfield); return __s; } in fixed()
|
/ndk/sources/cxx-stl/llvm-libc++/www/ |
D | menu.css | 6 position:fixed;
|
/ndk/sources/host-tools/make-3.81/tests/ |
D | NEWS | 47 correctly in all cases (fixed in at least 5.004_02). 126 Several tests fixed to match the fact that MAKELEVEL > 0 or -C now 129 parallel_execution test fixed to not use double colon rules any 132 errors_in_commands test fixed to handle different error messages 135 Several tests fixed to handle -make_path with a relative path 138 dash-e-option test fixed to use $PATH instead of $USER (since the
|
/ndk/sources/cxx-stl/stlport/stlport/using/ |
D | ios | 37 using _STLP_NEW_IO_NAMESPACE::fixed;
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/ios/basic.ios.members/ |
D | swap.pass.cpp | 75 ios1.flags(std::ios::boolalpha | std::ios::dec | std::ios::fixed); in main() 149 assert(ios2.flags() == (std::ios::boolalpha | std::ios::dec | std::ios::fixed)); in main()
|
D | copyfmt.pass.cpp | 113 ios1.flags(std::ios::boolalpha | std::ios::dec | std::ios::fixed); in main()
|
/ndk/sources/cxx-stl/llvm-libc++/include/ |
D | ios | 34 static constexpr fmtflags fixed; 194 ios_base& fixed (ios_base& str); 235 static const fmtflags fixed = 0x0004; 250 static const fmtflags floatfield = scientific | fixed; 956 fixed(ios_base& __str) 958 __str.setf(ios_base::fixed, ios_base::floatfield); 974 __str.setf(ios_base::fixed | ios_base::scientific, ios_base::floatfield);
|
D | random | 3808 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed | 3919 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed | 4081 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed | 4199 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed | 4353 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed | 4724 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed | 4835 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed | 4954 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed | 5126 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed | 5262 __os.flags(ios_base::dec | ios_base::left | ios_base::fixed | [all …]
|
/ndk/sources/host-tools/sed-4.2.1/ |
D | NEWS | 30 * multibyte processing fixed 38 * fixed bug in 'i\' giving a segmentation violation if given alone. 77 * fixed --disable-nls build problems on Solaris. 79 * fixed `make check' in non-English locales. 204 * fixed bug in s///Np: was printing even if less than N matches were 207 * fixed infinite loop on s///N when LHS matched a null string and 390 regex routines. This change also fixed a bug where /./ did not match the 501 amounts of memory. These problems have been fixed and in such cases,
|
D | ChangeLog | 1664 `c' command gratuituosly; fixed potential memory 2010 * sed/execute.c(do_subst): fixed two bugs: s/ */X/g was failing 2099 * lib/memmove.c(memmove): fixed wrong sense used 2115 * doc/sed.1, doc/sed.texi: fixed some typos, formatting 2442 the comments; fixed several typos. 2446 * execute.c (do_subst): fixed bug where the "replaced" flag 2741 * sed.c: fixed bug which caused SEGV for files missing a 2941 * sed.c (execute_program): fixed the cycling behavior of 'D' 2950 that karl@gnu fixed some regexp bugs that were plaguing sed.
|
/ndk/sources/cxx-stl/stlport/src/ |
D | num_put_float.cpp | 450 __fill_fmtbuf(fmtbuf, ios_base::fixed, 'L'); in _Stl_fcvtR() 661 case ios_base::fixed: in __format_float() 731 case ios_base::fixed: in __fill_fmtbuf() 797 case ios_base::fixed:
|
D | ios.cpp | 52 const ios_base::fmtflags ios_base::fixed; member in ios_base
|
/ndk/sources/cxx-stl/stlport/ |
D | README | 59 They should be fixed hopefully by a later release of this library.
|
/ndk/sources/host-tools/sed-4.2.1/m4/ |
D | stdio_h.m4 | 127 fseeko/ftello needlessly fail. This bug was fixed in 1.5.25, and
|
/ndk/sources/cxx-stl/llvm-libc++/src/ |
D | ios.cpp | 90 const ios_base::fmtflags ios_base::fixed; member in ios_base
|
/ndk/tests/build/issue20862-libpng-O0/jni/ |
D | pngpriv.h | 598 #define png_float(png_ptr, fixed, s) (.00001 * (fixed)) argument
|
/ndk/sources/host-tools/make-3.81/ |
D | README | 4 In addition, there have been bugs fixed.
|