Lines Matching refs:static

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;
51 static constexpr iostate badbit;
52 static constexpr iostate eofbit;
53 static constexpr iostate failbit;
54 static constexpr iostate goodbit;
57 static constexpr openmode app;
58 static constexpr openmode ate;
59 static constexpr openmode binary;
60 static constexpr openmode in;
61 static constexpr openmode out;
62 static constexpr openmode trunc;
65 static constexpr seekdir beg;
66 static constexpr seekdir cur;
67 static constexpr seekdir end;
88 static int xalloc();
103 static bool sync_with_stdio(bool sync = true);
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;
269 static const iostate badbit = 0x1;
270 static const iostate eofbit = 0x2;
271 static const iostate failbit = 0x4;
272 static const iostate goodbit = 0x0;
275 static const openmode app = 0x01;
276 static const openmode ate = 0x02;
277 static const openmode binary = 0x04;
278 static const openmode in = 0x08;
279 static const openmode out = 0x10;
280 static const openmode trunc = 0x20;
312 static int xalloc();
327 static bool sync_with_stdio(bool __sync = true);
395 static atomic<int> __xindex_;
397 static int __xindex_;