Home | History | Annotate | Download | only in include

Lines Matching full:ios_base

26 class ios_base
94 virtual ~ios_base();
98 typedef void (*event_callback)(event, ios_base&, int index);
101 ios_base(const ios_base&) = delete;
102 ios_base& operator=(const ios_base&) = delete;
107 ios_base();
112 : public ios_base
168 ios_base& boolalpha (ios_base& str);
169 ios_base& noboolalpha(ios_base& str);
170 ios_base& showbase (ios_base& str);
171 ios_base& noshowbase (ios_base& str);
172 ios_base& showpoint (ios_base& str);
173 ios_base& noshowpoint(ios_base& str);
174 ios_base& showpos (ios_base& str);
175 ios_base& noshowpos (ios_base& str);
176 ios_base& skipws (ios_base& str);
177 ios_base& noskipws (ios_base& str);
178 ios_base& uppercase (ios_base& str);
179 ios_base& nouppercase(ios_base& str);
180 ios_base& unitbuf (ios_base& str);
181 ios_base& nounitbuf (ios_base& str);
184 ios_base& internal (ios_base& str);
185 ios_base& left (ios_base& str);
186 ios_base& right (ios_base& str);
189 ios_base& dec (ios_base& str);
190 ios_base& hex (ios_base& str);
191 ios_base& oct (ios_base& str);
194 ios_base& fixed (ios_base& str);
195 ios_base& scientific (ios_base& str);
196 ios_base& hexfloat (ios_base& str);
197 ios_base& defaultfloat(ios_base& str);
231 class _LIBCPP_TYPE_VIS ios_base
302 virtual ~ios_base();
306 typedef void (*event_callback)(event, ios_base&, int __index);
310 ios_base(const ios_base&); // = delete;
311 ios_base& operator=(const ios_base&); // = delete;
333 ios_base() {// purposefully does no initialization
347 void copyfmt(const ios_base&);
348 void move(ios_base&);
349 void swap(ios_base&) _NOEXCEPT;
415 class _LIBCPP_EXCEPTION_ABI ios_base::failure
424 class _LIBCPP_TYPE_VIS ios_base::Init
434 ios_base::fmtflags
435 ios_base::flags() const
441 ios_base::fmtflags
442 ios_base::flags(fmtflags __fmtfl)
450 ios_base::fmtflags
451 ios_base::setf(fmtflags __fmtfl)
460 ios_base::unsetf(fmtflags __mask)
466 ios_base::fmtflags
467 ios_base::setf(fmtflags __fmtfl, fmtflags __mask)
479 ios_base::precision() const
486 ios_base::precision(streamsize __prec)
497 ios_base::width() const
504 ios_base::width(streamsize __wide)
514 ios_base::iostate
515 ios_base::rdstate() const
522 ios_base::setstate(iostate __state)
529 ios_base::good() const
536 ios_base::eof() const
543 ios_base::fail() const
550 ios_base::bad() const
556 ios_base::iostate
557 ios_base::exceptions() const
564 ios_base::exceptions(iostate __iostate)
572 : public ios_base
587 _LIBCPP_ALWAYS_INLINE iostate rdstate() const {return ios_base::rdstate();}
588 _LIBCPP_ALWAYS_INLINE void clear(iostate __state = goodbit) {ios_base::clear(__state);}
589 _LIBCPP_ALWAYS_INLINE void setstate(iostate __state) {ios_base::setstate(__state);}
590 _LIBCPP_ALWAYS_INLINE bool good() const {return ios_base::good();}
591 _LIBCPP_ALWAYS_INLINE bool eof() const {return ios_base::eof();}
592 _LIBCPP_ALWAYS_INLINE bool fail() const {return ios_base::fail();}
593 _LIBCPP_ALWAYS_INLINE bool bad() const {return ios_base::bad();}
595 _LIBCPP_ALWAYS_INLINE iostate exceptions() const {return ios_base::exceptions();}
596 _LIBCPP_ALWAYS_INLINE void exceptions(iostate __iostate) {ios_base::exceptions(__iostate);}
668 ios_base::init(__sb);
696 return static_cast<basic_streambuf<char_type, traits_type>*>(ios_base::rdbuf());
705 ios_base::rdbuf(__sb);
715 ios_base::imbue(__loc);
764 ios_base::copyfmt(__rhs);
778 ios_base::move(__rhs);
789 ios_base::swap(__rhs);
799 ios_base::set_rdbuf(__sb);
803 ios_base&
804 boolalpha(ios_base& __str)
806 __str.setf(ios_base::boolalpha);
811 ios_base&
812 noboolalpha(ios_base& __str)
814 __str.unsetf(ios_base::boolalpha);
819 ios_base&
820 showbase(ios_base& __str)
822 __str.setf(ios_base::showbase);
827 ios_base&
828 noshowbase(ios_base& __str)
830 __str.unsetf(ios_base::showbase);
835 ios_base&
836 showpoint(ios_base& __str)
838 __str.setf(ios_base::showpoint);
843 ios_base&
844 noshowpoint(ios_base& __str)
846 __str.unsetf(ios_base::showpoint);
851 ios_base&
852 showpos(ios_base& __str)
854 __str.setf(ios_base::showpos);
859 ios_base&
860 noshowpos(ios_base& __str)
862 __str.unsetf(ios_base::showpos);
867 ios_base&
868 skipws(ios_base& __str)
870 __str.setf(ios_base::skipws);
875 ios_base&
876 noskipws(ios_base& __str)
878 __str.unsetf(ios_base::skipws);
883 ios_base&
884 uppercase(ios_base& __str)
886 __str.setf(ios_base::uppercase);
891 ios_base&
892 nouppercase(ios_base& __str)
894 __str.unsetf(ios_base::uppercase);
899 ios_base&
900 unitbuf(ios_base& __str)
902 __str.setf(ios_base::unitbuf);
907 ios_base&
908 nounitbuf(ios_base& __str)
910 __str.unsetf(ios_base::unitbuf);
915 ios_base&
916 internal(ios_base& __str)
918 __str.setf(ios_base::internal, ios_base::adjustfield);
923 ios_base&
924 left(ios_base& __str)
926 __str.setf(ios_base::left, ios_base::adjustfield);
931 ios_base&
932 right(ios_base& __str)
934 __str.setf(ios_base::right, ios_base::adjustfield);
939 ios_base&
940 dec(ios_base& __str)
942 __str.setf(ios_base::dec, ios_base::basefield);
947 ios_base&
948 hex(ios_base& __str)
950 __str.setf(ios_base::hex, ios_base::basefield);
955 ios_base&
956 oct(ios_base& __str)
958 __str.setf(ios_base::oct, ios_base::basefield);
963 ios_base&
964 fixed(ios_base& __str)
966 __str.setf(ios_base::fixed, ios_base::floatfield);
971 ios_base&
972 scientific(ios_base& __str)
974 __str.setf(ios_base::scientific, ios_base::floatfield);
979 ios_base&
980 hexfloat(ios_base& __str)
982 __str.setf(ios_base::fixed | ios_base::scientific, ios_base::floatfield);
987 ios_base&
988 defaultfloat(ios_base& __str)
990 __str.unsetf(ios_base::floatfield);