Home | History | Annotate | Download | only in bits

Lines Matching defs:fmtflags

237     // 27.4.2.1.2  Type ios_base::fmtflags
243 * Thing to happen. Defined objects of type fmtflags are:
263 typedef _Ios_Fmtflags fmtflags;
266 static const fmtflags boolalpha = _S_boolalpha;
269 static const fmtflags dec = _S_dec;
272 static const fmtflags fixed = _S_fixed;
275 static const fmtflags hex = _S_hex;
280 static const fmtflags internal = _S_internal;
284 static const fmtflags left = _S_left;
287 static const fmtflags oct = _S_oct;
291 static const fmtflags right = _S_right;
294 static const fmtflags scientific = _S_scientific;
298 static const fmtflags showbase = _S_showbase;
302 static const fmtflags showpoint = _S_showpoint;
305 static const fmtflags showpos = _S_showpos;
308 static const fmtflags skipws = _S_skipws;
311 static const fmtflags unitbuf = _S_unitbuf;
315 static const fmtflags uppercase = _S_uppercase;
318 static const fmtflags adjustfield = _S_adjustfield;
321 static const fmtflags basefield = _S_basefield;
324 static const fmtflags floatfield = _S_floatfield;
466 fmtflags _M_flags;
549 // [27.4.2.2] fmtflags state functions
554 fmtflags
565 fmtflags
566 flags(fmtflags __fmtfl)
568 fmtflags __old = _M_flags;
581 fmtflags
582 setf(fmtflags __fmtfl)
584 fmtflags __old = _M_flags;
598 fmtflags
599 setf(fmtflags __fmtfl, fmtflags __mask)
601 fmtflags __old = _M_flags;
614 unsetf(fmtflags __mask)
796 // [27.4.5.1] fmtflags manipulators