Home | History | Annotate | Download | only in bits

Lines Matching defs:fmtflags

229     // 27.4.2.1.2  Type ios_base::fmtflags
235 * Thing to happen. Defined objects of type fmtflags are:
255 typedef _Ios_Fmtflags fmtflags;
258 static const fmtflags boolalpha = _S_boolalpha;
261 static const fmtflags dec = _S_dec;
264 static const fmtflags fixed = _S_fixed;
267 static const fmtflags hex = _S_hex;
272 static const fmtflags internal = _S_internal;
276 static const fmtflags left = _S_left;
279 static const fmtflags oct = _S_oct;
283 static const fmtflags right = _S_right;
286 static const fmtflags scientific = _S_scientific;
290 static const fmtflags showbase = _S_showbase;
294 static const fmtflags showpoint = _S_showpoint;
297 static const fmtflags showpos = _S_showpos;
300 static const fmtflags skipws = _S_skipws;
303 static const fmtflags unitbuf = _S_unitbuf;
307 static const fmtflags uppercase = _S_uppercase;
310 static const fmtflags adjustfield = _S_adjustfield;
313 static const fmtflags basefield = _S_basefield;
316 static const fmtflags floatfield = _S_floatfield;
454 fmtflags _M_flags;
545 // [27.4.2.2] fmtflags state functions
550 fmtflags
561 fmtflags
562 flags(fmtflags __fmtfl)
564 fmtflags __old = _M_flags;
577 fmtflags
578 setf(fmtflags __fmtfl)
580 fmtflags __old = _M_flags;
594 fmtflags
595 setf(fmtflags __fmtfl, fmtflags __mask)
597 fmtflags __old = _M_flags;
610 unsetf(fmtflags __mask)
792 // [27.4.5.1] fmtflags manipulators