Searched refs:scientific (Results 1 - 25 of 26) sorted by relevance

12

/haiku-buildtools/gcc/gmp/tests/cxx/
H A Dt-ostream.cc274 { "0", "0.000000e+00", ios::dec | ios::scientific },
275 { "0", "0.000000e+00", ios::dec | ios::scientific | ios::showpoint },
281 { "0", "0.0000e+00", ios::dec | ios::scientific, 0, 4 },
282 { "0", "0.0000e+00", ios::dec | ios::scientific | ios::showpoint, 0, 4 },
289 { "1", "1.000000e+00", ios::dec | ios::scientific },
290 { "1", "1.000000e+00", ios::dec | ios::scientific | ios::showpoint },
296 { "1", "1.0000e+00", ios::dec | ios::scientific, 0, 4 },
297 { "1", "1.0000e+00", ios::dec | ios::scientific | ios::showpoint, 0, 4 },
333 { "0", "0.000@+00", ios::hex | ios::scientific, 0, 3 },
334 { "256", "1.000@+02", ios::hex | ios::scientific,
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Denum2.C17 scientific=04000, fixed=010000, unitbuf=020000, stdio=040000, enumerator in enum:ios::__anon1232
/haiku-buildtools/gcc/libstdc++-v3/src/c++98/
H A Dlocale_facets.cc77 if (__fltfield != (ios_base::fixed | ios_base::scientific))
90 else if (__fltfield == ios_base::scientific)
93 else if (__fltfield == (ios_base::fixed | ios_base::scientific))
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.benjamin/
H A Dtypedef03.C25 scientific= 0x1000, enumerator in enum:QTextStream::__anon1193
/haiku-buildtools/gcc/libstdc++-v3/testsuite/22_locale/num_put/put/char/
H A D6.cc45 oss2.setf(ios_base::scientific, ios_base::floatfield);
H A D1.cc104 oss.setf(ios_base::scientific, ios_base::floatfield);
114 oss.setf(ios_base::scientific, ios_base::floatfield);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/22_locale/num_put/put/wchar_t/
H A D6.cc45 woss2.setf(ios_base::scientific, ios_base::floatfield);
H A D1.cc104 oss.setf(ios_base::scientific, ios_base::floatfield);
114 oss.setf(ios_base::scientific, ios_base::floatfield);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_arithmetic/char/
H A D4402.cc40 os.setf(ios::scientific);
H A D1.cc43 bool scientific; member in struct:_TestCase
87 // scientific formatting
130 if (tc.scientific)
131 os.setf(ios::scientific);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/basic_ostream/inserters_arithmetic/wchar_t/
H A D4402.cc39 os.setf(wios::scientific);
H A D1.cc43 bool scientific; member in struct:_TestCase
88 // scientific formatting 23-29
131 if (tc.scientific)
132 os.setf(ios::scientific);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/ios_base/types/fmtflags/
H A Dcase_label.cc51 case std::ios_base::scientific:
/haiku-buildtools/gcc/gmp/cxx/
H A Dosfuns.cc67 else if ((o.flags() & ios::floatfield) == ios::scientific)
99 /* in fixed and scientific always show trailing zeros, in general format
102 || (o.flags() & ios::floatfield) == ios::scientific)
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/headers/ios/
H A Dsynopsis.cc58 ios_base& scientific (ios_base& str);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/22_locale/num_get/get/wchar_t/
H A D1.cc89 iss.setf(ios_base::scientific, ios_base::floatfield);
100 iss.setf(ios_base::scientific, ios_base::floatfield);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/22_locale/num_get/get/char/
H A D1.cc90 iss.setf(ios_base::scientific, ios_base::floatfield);
101 iss.setf(ios_base::scientific, ios_base::floatfield);
/haiku-buildtools/legacy/gcc/libio/
H A Dioextend.cc37 | ios::uppercase | ios::showpos | ios::scientific | ios::fixed
H A Diostream.h289 inline ios& scientific(ios& i) function
290 { i.setf(ios::scientific, ios::floatfield); return i; }
H A Dstreambuf.h157 scientific=_IO_SCIENTIFIC, fixed=_IO_FIXED, enumerator in enum:ios::__anon3529
165 floatfield = scientific+fixed,
H A Diostream.cc694 else if ((flags() & ios::floatfield) == ios::scientific)
742 if (flags() & (ios::fixed|ios::scientific) & ios::showpos)
805 else if ((flags() & ios::floatfield) == ios::scientific)
/haiku-buildtools/gcc/gmp/printf/
H A Ddoprntf.c78 /* arrange the fixed/scientific decision on a "prec" implied by how
242 scientific:
243 TRACE (printf (" scientific s.sss\n"));
279 /* The exponent for "scientific" will be exp-1, choose scientific if
285 goto scientific;
299 all digits, for fixed and scientific just the fraction. */
/haiku-buildtools/gcc/libstdc++-v3/include/bits/
H A Dios_base.h312 * - scientific
353 /// Generates floating-point output in scientific notation.
354 static const fmtflags scientific = _S_scientific; member in class:io_errc::ios_base
383 /// A mask of scientific|fixed. Useful for the 2-arg form of @c setf.
1047 /// Calls base.setf(ios_base::scientific, ios_base::floatfield).
1049 scientific(ios_base& __base) function in class:io_errc
1051 __base.setf(ios_base::scientific, ios_base::floatfield);
1059 /// base.setf(ios_base::fixed|ios_base::scientific, ios_base::floatfield)
1063 __base.setf(ios_base::fixed | ios_base::scientific, ios_base::floatfield);
/haiku-buildtools/gcc/libstdc++-v3/src/c++11/
H A Dios.cc45 const ios_base::fmtflags ios_base::scientific; member in class:ios_base
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp811.C40 scientific=04000, fixed=0100000, unitbuf=020000, stdio=040000, enumerator in enum:ios::__anon1246

Completed in 192 milliseconds

12