Lines Matching refs:fmtflags

30     typedef T1 fmtflags;
31 static constexpr fmtflags boolalpha;
32 static constexpr fmtflags dec;
33 static constexpr fmtflags fixed;
34 static constexpr fmtflags hex;
35 static constexpr fmtflags internal;
36 static constexpr fmtflags left;
37 static constexpr fmtflags oct;
38 static constexpr fmtflags right;
39 static constexpr fmtflags scientific;
40 static constexpr fmtflags showbase;
41 static constexpr fmtflags showpoint;
42 static constexpr fmtflags showpos;
43 static constexpr fmtflags skipws;
44 static constexpr fmtflags unitbuf;
45 static constexpr fmtflags uppercase;
46 static constexpr fmtflags adjustfield;
47 static constexpr fmtflags basefield;
48 static constexpr fmtflags floatfield;
71 // 27.5.2.2 fmtflags state:
72 fmtflags flags() const;
73 fmtflags flags(fmtflags fmtfl);
74 fmtflags setf(fmtflags fmtfl);
75 fmtflags setf(fmtflags fmtfl, fmtflags mask);
76 void unsetf(fmtflags mask);
248 typedef unsigned int fmtflags;
249 static const fmtflags boolalpha = 0x0001;
250 static const fmtflags dec = 0x0002;
251 static const fmtflags fixed = 0x0004;
252 static const fmtflags hex = 0x0008;
253 static const fmtflags internal = 0x0010;
254 static const fmtflags left = 0x0020;
255 static const fmtflags oct = 0x0040;
256 static const fmtflags right = 0x0080;
257 static const fmtflags scientific = 0x0100;
258 static const fmtflags showbase = 0x0200;
259 static const fmtflags showpoint = 0x0400;
260 static const fmtflags showpos = 0x0800;
261 static const fmtflags skipws = 0x1000;
262 static const fmtflags unitbuf = 0x2000;
263 static const fmtflags uppercase = 0x4000;
264 static const fmtflags adjustfield = left | right | internal;
265 static const fmtflags basefield = dec | oct | hex;
266 static const fmtflags floatfield = scientific | fixed;
295 // 27.5.2.2 fmtflags state:
296 _LIBCPP_INLINE_VISIBILITY fmtflags flags() const;
297 _LIBCPP_INLINE_VISIBILITY fmtflags flags(fmtflags __fmtfl);
298 _LIBCPP_INLINE_VISIBILITY fmtflags setf(fmtflags __fmtfl);
299 _LIBCPP_INLINE_VISIBILITY fmtflags setf(fmtflags __fmtfl, fmtflags __mask);
300 _LIBCPP_INLINE_VISIBILITY void unsetf(fmtflags __mask);
381 fmtflags __fmtflags_;
466 // fmtflags
469 ios_base::fmtflags
476 ios_base::fmtflags
477 ios_base::flags(fmtflags __fmtfl)
479 fmtflags __r = __fmtflags_;
485 ios_base::fmtflags
486 ios_base::setf(fmtflags __fmtfl)
488 fmtflags __r = __fmtflags_;
495 ios_base::unsetf(fmtflags __mask)
501 ios_base::fmtflags
502 ios_base::setf(fmtflags __fmtfl, fmtflags __mask)
504 fmtflags __r = __fmtflags_;