libstdc++
GNU C++ library
Loading...
Searching...
No Matches

◆ _Ios_Fmtflags

Enumerator
_S_boolalpha 
_S_dec 
_S_fixed 
_S_hex 
_S_internal 
_S_left 
_S_oct 
_S_right 
_S_scientific 
_S_showbase 
_S_showpoint 
_S_showpos 
_S_skipws 
_S_unitbuf 
_S_uppercase 
_S_adjustfield 
_S_basefield 
_S_floatfield 
_S_ios_fmtflags_end 
_S_ios_fmtflags_max 
_S_ios_fmtflags_min 

Definition at line 59 of file ios_base.h.

60 {
61 _S_boolalpha = 1L << 0,
62 _S_dec = 1L << 1,
63 _S_fixed = 1L << 2,
64 _S_hex = 1L << 3,
65 _S_internal = 1L << 4,
66 _S_left = 1L << 5,
67 _S_oct = 1L << 6,
68 _S_right = 1L << 7,
69 _S_scientific = 1L << 8,
70 _S_showbase = 1L << 9,
71 _S_showpoint = 1L << 10,
72 _S_showpos = 1L << 11,
73 _S_skipws = 1L << 12,
74 _S_unitbuf = 1L << 13,
75 _S_uppercase = 1L << 14,
79 _S_ios_fmtflags_end __attribute__((__unused__)) = 1L << 16,
80 _S_ios_fmtflags_max __attribute__((__unused__)) = __INT_MAX__,
81 _S_ios_fmtflags_min __attribute__((__unused__)) = ~__INT_MAX__
82 };
@ _S_right
Definition ios_base.h:68
@ _S_internal
Definition ios_base.h:65
@ _S_scientific
Definition ios_base.h:69
@ _S_ios_fmtflags_min
Definition ios_base.h:81
@ _S_fixed
Definition ios_base.h:63
@ _S_dec
Definition ios_base.h:62
@ _S_floatfield
Definition ios_base.h:78
@ _S_ios_fmtflags_end
Definition ios_base.h:79
@ _S_adjustfield
Definition ios_base.h:76
@ _S_showbase
Definition ios_base.h:70
@ _S_hex
Definition ios_base.h:64
@ _S_skipws
Definition ios_base.h:73
@ _S_uppercase
Definition ios_base.h:75
@ _S_ios_fmtflags_max
Definition ios_base.h:80
@ _S_showpos
Definition ios_base.h:72
@ _S_left
Definition ios_base.h:66
@ _S_unitbuf
Definition ios_base.h:74
@ _S_basefield
Definition ios_base.h:77
@ _S_oct
Definition ios_base.h:67
@ _S_boolalpha
Definition ios_base.h:61
@ _S_showpoint
Definition ios_base.h:71