Home
last modified time | relevance | path

Searched refs:fixed (Results 1 – 25 of 44) sorted by relevance

12

/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/std.ios.manip/floatfield.manip/
Dfixed.pass.cpp26 std::ios_base& r = std::fixed(ios); in main()
28 assert(ios.flags() & std::ios::fixed); in main()
Ddefaultfloat.pass.cpp28 assert(!(ios.flags() & std::ios::fixed)); in main()
Dhexfloat.pass.cpp28 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/
Dfmtflags.pass.cpp40 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/
DFIXES32 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/
Dissue39680-chrono-resolution.cpp27 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/
Dnum_put_get_test.cpp174 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/
Dnum_put_get_test.cpp174 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.h75 _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/
Dmenu.css6 position:fixed;
/ndk/sources/host-tools/make-3.81/tests/
DNEWS47 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/
Dios37 using _STLP_NEW_IO_NAMESPACE::fixed;
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/iostreams.base/ios/basic.ios.members/
Dswap.pass.cpp75 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()
Dcopyfmt.pass.cpp113 ios1.flags(std::ios::boolalpha | std::ios::dec | std::ios::fixed); in main()
/ndk/sources/cxx-stl/llvm-libc++/include/
Dios34 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);
Drandom3808 __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/
DNEWS30 * 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,
DChangeLog1664 `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/
Dnum_put_float.cpp450 __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:
Dios.cpp52 const ios_base::fmtflags ios_base::fixed; member in ios_base
/ndk/sources/cxx-stl/stlport/
DREADME59 They should be fixed hopefully by a later release of this library.
/ndk/sources/host-tools/sed-4.2.1/m4/
Dstdio_h.m4127 fseeko/ftello needlessly fail. This bug was fixed in 1.5.25, and
/ndk/sources/cxx-stl/llvm-libc++/src/
Dios.cpp90 const ios_base::fmtflags ios_base::fixed; member in ios_base
/ndk/tests/build/issue20862-libpng-O0/jni/
Dpngpriv.h598 #define png_float(png_ptr, fixed, s) (.00001 * (fixed)) argument
/ndk/sources/host-tools/make-3.81/
DREADME4 In addition, there have been bugs fixed.

12