Home | History | Annotate | Download | only in bits

Lines Matching defs:fmtflags

231     // 27.4.2.1.2  Type ios_base::fmtflags
237 * Thing to happen. Defined objects of type fmtflags are:
257 typedef _Ios_Fmtflags fmtflags;
260 static const fmtflags boolalpha = _S_boolalpha;
263 static const fmtflags dec = _S_dec;
266 static const fmtflags fixed = _S_fixed;
269 static const fmtflags hex = _S_hex;
274 static const fmtflags internal = _S_internal;
278 static const fmtflags left = _S_left;
281 static const fmtflags oct = _S_oct;
285 static const fmtflags right = _S_right;
288 static const fmtflags scientific = _S_scientific;
292 static const fmtflags showbase = _S_showbase;
296 static const fmtflags showpoint = _S_showpoint;
299 static const fmtflags showpos = _S_showpos;
302 static const fmtflags skipws = _S_skipws;
305 static const fmtflags unitbuf = _S_unitbuf;
309 static const fmtflags uppercase = _S_uppercase;
312 static const fmtflags adjustfield = _S_adjustfield;
315 static const fmtflags basefield = _S_basefield;
318 static const fmtflags floatfield = _S_floatfield;
456 fmtflags _M_flags;
547 // [27.4.2.2] fmtflags state functions
552 fmtflags
563 fmtflags
564 flags(fmtflags __fmtfl)
566 fmtflags __old = _M_flags;
579 fmtflags
580 setf(fmtflags __fmtfl)
582 fmtflags __old = _M_flags;
596 fmtflags
597 setf(fmtflags __fmtfl, fmtflags __mask)
599 fmtflags __old = _M_flags;
612 unsetf(fmtflags __mask)
794 // [27.4.5.1] fmtflags manipulators