Searched refs:showpos (Results 1 – 9 of 9) sorted by relevance
/external/stlport/test/unit/ |
D | num_put_get_test.cpp | 440 ostr << fixed << showpos << 1.23457e+17f; in num_put_float() 450 ostr << fixed << showpos << setprecision(100) << 1.23457e+17f; 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() 614 #define CHECK_COMPLETE(type, val, base, showbase, showpos, casing, width, adjust, expected) \ argument 618 ostr << base << showbase << showpos << casing << setw(width) << adjust << tmp; \ 674 CHECK_COMPLETE(short, 0, oct, showbase, showpos, nouppercase, 6, right, " 0") in num_put_integer() [all …]
|
D | num_facets_test.cpp | 107 fostr.setf(ios_base::uppercase | ios_base::showpos); in _num_put_get()
|
/external/oprofile/libutil++/ |
D | string_manip.cpp | 107 format_percent(double value, size_t int_width, size_t fract_width, bool showpos) in format_percent() argument 114 if (showpos) in format_percent() 115 os.setf(ios::showpos); in format_percent()
|
D | string_manip.h | 70 size_t frac_width, bool showpos = false);
|
/external/stlport/stlport/stl/ |
D | _ios_base.h | 78 _STLP_STATIC_CONSTANT(int, showpos = 0x0800); 285 inline ios_base& _STLP_CALL showpos(ios_base& __s) in showpos() function 286 { __s.setf(ios_base::showpos); return __s;} in showpos() 289 { __s.unsetf(ios_base::showpos); return __s;} in noshowpos()
|
D | _num_put.c | 286 else if (__flags & ios_base::showpos) in __write_decimal_backward() 297 if (__flags & ios_base::showpos) in __write_decimal_backward() 309 if ((__flags & ios_base::showpos) && ((__flags & (ios_base::oct | ios_base::hex)) == 0)) in __write_integer_backward()
|
/external/stlport/stlport/using/ |
D | ios | 19 using _STLP_NEW_IO_NAMESPACE::showpos;
|
/external/stlport/src/ |
D | num_put_float.cpp | 494 else if (flags & ios_base::showpos) in __format_float_scientific() 556 else if ( flags & ios_base::showpos ) in __format_float_fixed() 624 else if (flags & ios_base::showpos) in __format_nan_or_inf() 630 else if (flags & ios_base::showpos) in __format_nan_or_inf() 643 else if (flags & ios_base::showpos) in __format_nan_or_inf() 714 if (flags & ios_base::showpos) in __fill_fmtbuf()
|
D | ios.cpp | 55 const ios_base::fmtflags ios_base::showpos; member in ios_base
|