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);
246 typedef unsigned int fmtflags;
247 static const fmtflags boolalpha = 0x0001;
248 static const fmtflags dec = 0x0002;
249 static const fmtflags fixed = 0x0004;
250 static const fmtflags hex = 0x0008;
251 static const fmtflags internal = 0x0010;
252 static const fmtflags left = 0x0020;
253 static const fmtflags oct = 0x0040;
254 static const fmtflags right = 0x0080;
255 static const fmtflags scientific = 0x0100;
256 static const fmtflags showbase = 0x0200;
257 static const fmtflags showpoint = 0x0400;
258 static const fmtflags showpos = 0x0800;
259 static const fmtflags skipws = 0x1000;
260 static const fmtflags unitbuf = 0x2000;
261 static const fmtflags uppercase = 0x4000;
262 static const fmtflags adjustfield = left | right | internal;
263 static const fmtflags basefield = dec | oct | hex;
264 static const fmtflags floatfield = scientific | fixed;
293 // 27.5.2.2 fmtflags state:
294 _LIBCPP_INLINE_VISIBILITY fmtflags flags() const;
295 _LIBCPP_INLINE_VISIBILITY fmtflags flags(fmtflags __fmtfl);
296 _LIBCPP_INLINE_VISIBILITY fmtflags setf(fmtflags __fmtfl);
297 _LIBCPP_INLINE_VISIBILITY fmtflags setf(fmtflags __fmtfl, fmtflags __mask);
298 _LIBCPP_INLINE_VISIBILITY void unsetf(fmtflags __mask);
379 fmtflags __fmtflags_;
464 // fmtflags
467 ios_base::fmtflags
474 ios_base::fmtflags
475 ios_base::flags(fmtflags __fmtfl)
477 fmtflags __r = __fmtflags_;
483 ios_base::fmtflags
484 ios_base::setf(fmtflags __fmtfl)
486 fmtflags __r = __fmtflags_;
493 ios_base::unsetf(fmtflags __mask)
499 ios_base::fmtflags
500 ios_base::setf(fmtflags __fmtfl, fmtflags __mask)
502 fmtflags __r = __fmtflags_;