reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

usr/include/c++/7.4.0/bits/ios_base.h
  326     static const fmtflags boolalpha =   _S_boolalpha;
  329     static const fmtflags dec =         _S_dec;
  332     static const fmtflags fixed =       _S_fixed;
  335     static const fmtflags hex =         _S_hex;
  340     static const fmtflags internal =    _S_internal;
  344     static const fmtflags left =        _S_left;
  347     static const fmtflags oct =         _S_oct;
  351     static const fmtflags right =       _S_right;
  354     static const fmtflags scientific =  _S_scientific;
  358     static const fmtflags showbase =    _S_showbase;
  362     static const fmtflags showpoint =   _S_showpoint;
  365     static const fmtflags showpos =     _S_showpos;
  368     static const fmtflags skipws =      _S_skipws;
  371     static const fmtflags unitbuf =     _S_unitbuf;
  375     static const fmtflags uppercase =   _S_uppercase;
  378     static const fmtflags adjustfield = _S_adjustfield;
  381     static const fmtflags basefield =   _S_basefield;
  384     static const fmtflags floatfield =  _S_floatfield;
  522     fmtflags		_M_flags;
  618     fmtflags
  629     fmtflags
  630     flags(fmtflags __fmtfl)
  632       fmtflags __old = _M_flags;
  645     fmtflags
  646     setf(fmtflags __fmtfl)
  648       fmtflags __old = _M_flags;
  662     fmtflags
  663     setf(fmtflags __fmtfl, fmtflags __mask)
  663     setf(fmtflags __fmtfl, fmtflags __mask)
  665       fmtflags __old = _M_flags;
  678     unsetf(fmtflags __mask)
usr/include/c++/7.4.0/bits/locale_facets.tcc
  389 	const ios_base::fmtflags __basefield = __io.flags()
  757       typedef ios_base::fmtflags        fmtflags;
  795 		  ios_base::fmtflags __flags, bool __dec)
  861 	const ios_base::fmtflags __flags = __io.flags();
  870 	const ios_base::fmtflags __basefield = __flags & ios_base::basefield;
 1108       const ios_base::fmtflags __flags = __io.flags();
 1182       const ios_base::fmtflags __flags = __io.flags();
 1183       const ios_base::fmtflags __fmt = ~(ios_base::basefield
 1213       const ios_base::fmtflags __adjust = __io.flags() & ios_base::adjustfield;
usr/include/c++/7.4.0/bits/locale_facets_nonio.tcc
  490 	    const ios_base::fmtflags __f = __io.flags() 
usr/include/c++/7.4.0/bits/ostream.tcc
   96       const ios_base::fmtflags __fmt = this->flags() & ios_base::basefield;
  110       const ios_base::fmtflags __fmt = this->flags() & ios_base::basefield;
usr/include/c++/7.4.0/bits/quoted_string.h
  136 	std::ios_base::fmtflags __flags
usr/include/c++/7.4.0/iomanip
   56   struct _Resetiosflags { ios_base::fmtflags _M_mask; };
   66   resetiosflags(ios_base::fmtflags __mask)
   86   struct _Setiosflags { ios_base::fmtflags _M_mask; };
   96   setiosflags(ios_base::fmtflags __mask)