Lines Matching refs: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
305 virtual ~ios_base();
309 typedef void (*event_callback)(event, ios_base&, int __index);
313 ios_base(const ios_base&); // = delete;
314 ios_base& operator=(const ios_base&); // = delete;
336 ios_base() {// purposefully does no initialization
350 void copyfmt(const ios_base&);
351 void move(ios_base&);
352 void swap(ios_base&) _NOEXCEPT;
420 class _LIBCPP_EXCEPTION_ABI ios_base::failure
429 class _LIBCPP_TYPE_VIS ios_base::Init
439 ios_base::fmtflags
440 ios_base::flags() const
446 ios_base::fmtflags
447 ios_base::flags(fmtflags __fmtfl)
455 ios_base::fmtflags
456 ios_base::setf(fmtflags __fmtfl)
465 ios_base::unsetf(fmtflags __mask)
471 ios_base::fmtflags
472 ios_base::setf(fmtflags __fmtfl, fmtflags __mask)
484 ios_base::precision() const
491 ios_base::precision(streamsize __prec)
502 ios_base::width() const
509 ios_base::width(streamsize __wide)
519 ios_base::iostate
520 ios_base::rdstate() const
527 ios_base::setstate(iostate __state)
534 ios_base::good() const
541 ios_base::eof() const
548 ios_base::fail() const
555 ios_base::bad() const
561 ios_base::iostate
562 ios_base::exceptions() const
569 ios_base::exceptions(iostate __iostate)
584 : public ios_base
612 _LIBCPP_INLINE_VISIBILITY iostate rdstate() const {return ios_base::rdstate();}
613 _LIBCPP_INLINE_VISIBILITY void clear(iostate __state = goodbit) {ios_base::clear(__state);}
614 _LIBCPP_INLINE_VISIBILITY void setstate(iostate __state) {ios_base::setstate(__state);}
615 _LIBCPP_INLINE_VISIBILITY bool good() const {return ios_base::good();}
616 _LIBCPP_INLINE_VISIBILITY bool eof() const {return ios_base::eof();}
617 _LIBCPP_INLINE_VISIBILITY bool fail() const {return ios_base::fail();}
618 _LIBCPP_INLINE_VISIBILITY bool bad() const {return ios_base::bad();}
620 _LIBCPP_INLINE_VISIBILITY iostate exceptions() const {return ios_base::exceptions();}
621 _LIBCPP_INLINE_VISIBILITY void exceptions(iostate __iostate) {ios_base::exceptions(__iostate);}
693 ios_base::init(__sb);
721 return static_cast<basic_streambuf<char_type, traits_type>*>(ios_base::rdbuf());
730 ios_base::rdbuf(__sb);
740 ios_base::imbue(__loc);
789 ios_base::copyfmt(__rhs);
803 ios_base::move(__rhs);
814 ios_base::swap(__rhs);
824 ios_base::set_rdbuf(__sb);
828 ios_base&
829 boolalpha(ios_base& __str)
831 __str.setf(ios_base::boolalpha);
836 ios_base&
837 noboolalpha(ios_base& __str)
839 __str.unsetf(ios_base::boolalpha);
844 ios_base&
845 showbase(ios_base& __str)
847 __str.setf(ios_base::showbase);
852 ios_base&
853 noshowbase(ios_base& __str)
855 __str.unsetf(ios_base::showbase);
860 ios_base&
861 showpoint(ios_base& __str)
863 __str.setf(ios_base::showpoint);
868 ios_base&
869 noshowpoint(ios_base& __str)
871 __str.unsetf(ios_base::showpoint);
876 ios_base&
877 showpos(ios_base& __str)
879 __str.setf(ios_base::showpos);
884 ios_base&
885 noshowpos(ios_base& __str)
887 __str.unsetf(ios_base::showpos);
892 ios_base&
893 skipws(ios_base& __str)
895 __str.setf(ios_base::skipws);
900 ios_base&
901 noskipws(ios_base& __str)
903 __str.unsetf(ios_base::skipws);
908 ios_base&
909 uppercase(ios_base& __str)
911 __str.setf(ios_base::uppercase);
916 ios_base&
917 nouppercase(ios_base& __str)
919 __str.unsetf(ios_base::uppercase);
924 ios_base&
925 unitbuf(ios_base& __str)
927 __str.setf(ios_base::unitbuf);
932 ios_base&
933 nounitbuf(ios_base& __str)
935 __str.unsetf(ios_base::unitbuf);
940 ios_base&
941 internal(ios_base& __str)
943 __str.setf(ios_base::internal, ios_base::adjustfield);
948 ios_base&
949 left(ios_base& __str)
951 __str.setf(ios_base::left, ios_base::adjustfield);
956 ios_base&
957 right(ios_base& __str)
959 __str.setf(ios_base::right, ios_base::adjustfield);
964 ios_base&
965 dec(ios_base& __str)
967 __str.setf(ios_base::dec, ios_base::basefield);
972 ios_base&
973 hex(ios_base& __str)
975 __str.setf(ios_base::hex, ios_base::basefield);
980 ios_base&
981 oct(ios_base& __str)
983 __str.setf(ios_base::oct, ios_base::basefield);
988 ios_base&
989 fixed(ios_base& __str)
991 __str.setf(ios_base::fixed, ios_base::floatfield);
996 ios_base&
997 scientific(ios_base& __str)
999 __str.setf(ios_base::scientific, ios_base::floatfield);
1004 ios_base&
1005 hexfloat(ios_base& __str)
1007 __str.setf(ios_base::fixed | ios_base::scientific, ios_base::floatfield);
1012 ios_base&
1013 defaultfloat(ios_base& __str)
1015 __str.unsetf(ios_base::floatfield);