Lines Matching refs:ios_base

25 class ios_base
93 virtual ~ios_base();
97 typedef void (*event_callback)(event, ios_base&, int index);
100 ios_base(const ios_base&) = delete;
101 ios_base& operator=(const ios_base&) = delete;
106 ios_base();
111 : public ios_base
167 ios_base& boolalpha (ios_base& str);
168 ios_base& noboolalpha(ios_base& str);
169 ios_base& showbase (ios_base& str);
170 ios_base& noshowbase (ios_base& str);
171 ios_base& showpoint (ios_base& str);
172 ios_base& noshowpoint(ios_base& str);
173 ios_base& showpos (ios_base& str);
174 ios_base& noshowpos (ios_base& str);
175 ios_base& skipws (ios_base& str);
176 ios_base& noskipws (ios_base& str);
177 ios_base& uppercase (ios_base& str);
178 ios_base& nouppercase(ios_base& str);
179 ios_base& unitbuf (ios_base& str);
180 ios_base& nounitbuf (ios_base& str);
183 ios_base& internal (ios_base& str);
184 ios_base& left (ios_base& str);
185 ios_base& right (ios_base& str);
188 ios_base& dec (ios_base& str);
189 ios_base& hex (ios_base& str);
190 ios_base& oct (ios_base& str);
193 ios_base& fixed (ios_base& str);
194 ios_base& scientific (ios_base& str);
195 ios_base& hexfloat (ios_base& str);
196 ios_base& defaultfloat(ios_base& str);
230 class _LIBCPP_TYPE_VIS ios_base
304 virtual ~ios_base();
308 typedef void (*event_callback)(event, ios_base&, int __index);
312 ios_base(const ios_base&); // = delete;
313 ios_base& operator=(const ios_base&); // = delete;
339 __rdstate_ |= __state | ios_base::badbit;
344 ios_base() {// purposefully does no initialization
358 void copyfmt(const ios_base&);
359 void move(ios_base&);
360 void swap(ios_base&) _NOEXCEPT;
428 class _LIBCPP_EXCEPTION_ABI ios_base::failure
441 throw ios_base::failure(__msg);
448 class _LIBCPP_TYPE_VIS ios_base::Init
458 ios_base::fmtflags
459 ios_base::flags() const
465 ios_base::fmtflags
466 ios_base::flags(fmtflags __fmtfl)
474 ios_base::fmtflags
475 ios_base::setf(fmtflags __fmtfl)
484 ios_base::unsetf(fmtflags __mask)
490 ios_base::fmtflags
491 ios_base::setf(fmtflags __fmtfl, fmtflags __mask)
503 ios_base::precision() const
510 ios_base::precision(streamsize __prec)
521 ios_base::width() const
528 ios_base::width(streamsize __wide)
538 ios_base::iostate
539 ios_base::rdstate() const
546 ios_base::setstate(iostate __state)
553 ios_base::good() const
560 ios_base::eof() const
567 ios_base::fail() const
574 ios_base::bad() const
580 ios_base::iostate
581 ios_base::exceptions() const
588 ios_base::exceptions(iostate __iostate)
603 : public ios_base
631 _LIBCPP_INLINE_VISIBILITY iostate rdstate() const {return ios_base::rdstate();}
632 _LIBCPP_INLINE_VISIBILITY void clear(iostate __state = goodbit) {ios_base::clear(__state);}
633 _LIBCPP_INLINE_VISIBILITY void setstate(iostate __state) {ios_base::setstate(__state);}
634 _LIBCPP_INLINE_VISIBILITY bool good() const {return ios_base::good();}
635 _LIBCPP_INLINE_VISIBILITY bool eof() const {return ios_base::eof();}
636 _LIBCPP_INLINE_VISIBILITY bool fail() const {return ios_base::fail();}
637 _LIBCPP_INLINE_VISIBILITY bool bad() const {return ios_base::bad();}
639 _LIBCPP_INLINE_VISIBILITY iostate exceptions() const {return ios_base::exceptions();}
640 _LIBCPP_INLINE_VISIBILITY void exceptions(iostate __iostate) {ios_base::exceptions(__iostate);}
712 ios_base::init(__sb);
740 return static_cast<basic_streambuf<char_type, traits_type>*>(ios_base::rdbuf());
749 ios_base::rdbuf(__sb);
759 ios_base::imbue(__loc);
808 ios_base::copyfmt(__rhs);
822 ios_base::move(__rhs);
833 ios_base::swap(__rhs);
843 ios_base::set_rdbuf(__sb);
847 ios_base&
848 boolalpha(ios_base& __str)
850 __str.setf(ios_base::boolalpha);
855 ios_base&
856 noboolalpha(ios_base& __str)
858 __str.unsetf(ios_base::boolalpha);
863 ios_base&
864 showbase(ios_base& __str)
866 __str.setf(ios_base::showbase);
871 ios_base&
872 noshowbase(ios_base& __str)
874 __str.unsetf(ios_base::showbase);
879 ios_base&
880 showpoint(ios_base& __str)
882 __str.setf(ios_base::showpoint);
887 ios_base&
888 noshowpoint(ios_base& __str)
890 __str.unsetf(ios_base::showpoint);
895 ios_base&
896 showpos(ios_base& __str)
898 __str.setf(ios_base::showpos);
903 ios_base&
904 noshowpos(ios_base& __str)
906 __str.unsetf(ios_base::showpos);
911 ios_base&
912 skipws(ios_base& __str)
914 __str.setf(ios_base::skipws);
919 ios_base&
920 noskipws(ios_base& __str)
922 __str.unsetf(ios_base::skipws);
927 ios_base&
928 uppercase(ios_base& __str)
930 __str.setf(ios_base::uppercase);
935 ios_base&
936 nouppercase(ios_base& __str)
938 __str.unsetf(ios_base::uppercase);
943 ios_base&
944 unitbuf(ios_base& __str)
946 __str.setf(ios_base::unitbuf);
951 ios_base&
952 nounitbuf(ios_base& __str)
954 __str.unsetf(ios_base::unitbuf);
959 ios_base&
960 internal(ios_base& __str)
962 __str.setf(ios_base::internal, ios_base::adjustfield);
967 ios_base&
968 left(ios_base& __str)
970 __str.setf(ios_base::left, ios_base::adjustfield);
975 ios_base&
976 right(ios_base& __str)
978 __str.setf(ios_base::right, ios_base::adjustfield);
983 ios_base&
984 dec(ios_base& __str)
986 __str.setf(ios_base::dec, ios_base::basefield);
991 ios_base&
992 hex(ios_base& __str)
994 __str.setf(ios_base::hex, ios_base::basefield);
999 ios_base&
1000 oct(ios_base& __str)
1002 __str.setf(ios_base::oct, ios_base::basefield);
1007 ios_base&
1008 fixed(ios_base& __str)
1010 __str.setf(ios_base::fixed, ios_base::floatfield);
1015 ios_base&
1016 scientific(ios_base& __str)
1018 __str.setf(ios_base::scientific, ios_base::floatfield);
1023 ios_base&
1024 hexfloat(ios_base& __str)
1026 __str.setf(ios_base::fixed | ios_base::scientific, ios_base::floatfield);
1031 ios_base&
1032 defaultfloat(ios_base& __str)
1034 __str.unsetf(ios_base::floatfield);