Lines Matching refs:fmtflags
31 typedef T1 fmtflags;
32 static constexpr fmtflags boolalpha;
33 static constexpr fmtflags dec;
34 static constexpr fmtflags fixed;
35 static constexpr fmtflags hex;
36 static constexpr fmtflags internal;
37 static constexpr fmtflags left;
38 static constexpr fmtflags oct;
39 static constexpr fmtflags right;
40 static constexpr fmtflags scientific;
41 static constexpr fmtflags showbase;
42 static constexpr fmtflags showpoint;
43 static constexpr fmtflags showpos;
44 static constexpr fmtflags skipws;
45 static constexpr fmtflags unitbuf;
46 static constexpr fmtflags uppercase;
47 static constexpr fmtflags adjustfield;
48 static constexpr fmtflags basefield;
49 static constexpr fmtflags floatfield;
72 // 27.5.2.2 fmtflags state:
73 fmtflags flags() const;
74 fmtflags flags(fmtflags fmtfl);
75 fmtflags setf(fmtflags fmtfl);
76 fmtflags setf(fmtflags fmtfl, fmtflags mask);
77 void unsetf(fmtflags mask);
236 typedef unsigned int fmtflags;
237 static const fmtflags boolalpha = 0x0001;
238 static const fmtflags dec = 0x0002;
239 static const fmtflags fixed = 0x0004;
240 static const fmtflags hex = 0x0008;
241 static const fmtflags internal = 0x0010;
242 static const fmtflags left = 0x0020;
243 static const fmtflags oct = 0x0040;
244 static const fmtflags right = 0x0080;
245 static const fmtflags scientific = 0x0100;
246 static const fmtflags showbase = 0x0200;
247 static const fmtflags showpoint = 0x0400;
248 static const fmtflags showpos = 0x0800;
249 static const fmtflags skipws = 0x1000;
250 static const fmtflags unitbuf = 0x2000;
251 static const fmtflags uppercase = 0x4000;
252 static const fmtflags adjustfield = left | right | internal;
253 static const fmtflags basefield = dec | oct | hex;
254 static const fmtflags floatfield = scientific | fixed;
280 // 27.5.2.2 fmtflags state:
281 _LIBCPP_INLINE_VISIBILITY fmtflags flags() const;
282 _LIBCPP_INLINE_VISIBILITY fmtflags flags(fmtflags __fmtfl);
283 _LIBCPP_INLINE_VISIBILITY fmtflags setf(fmtflags __fmtfl);
284 _LIBCPP_INLINE_VISIBILITY fmtflags setf(fmtflags __fmtfl, fmtflags __mask);
285 _LIBCPP_INLINE_VISIBILITY void unsetf(fmtflags __mask);
359 fmtflags __fmtflags_;
431 // fmtflags
434 ios_base::fmtflags
441 ios_base::fmtflags
442 ios_base::flags(fmtflags __fmtfl)
444 fmtflags __r = __fmtflags_;
450 ios_base::fmtflags
451 ios_base::setf(fmtflags __fmtfl)
453 fmtflags __r = __fmtflags_;
460 ios_base::unsetf(fmtflags __mask)
466 ios_base::fmtflags
467 ios_base::setf(fmtflags __fmtfl, fmtflags __mask)
469 fmtflags __r = __fmtflags_;
998 typedef typename __stream_type::fmtflags fmtflags;
1001 fmtflags __fmtflags_;