Home | History | Annotate | Download | only in include

Lines Matching full:__str

804 boolalpha(ios_base& __str)
806 __str.setf(ios_base::boolalpha);
807 return __str;
812 noboolalpha(ios_base& __str)
814 __str.unsetf(ios_base::boolalpha);
815 return __str;
820 showbase(ios_base& __str)
822 __str.setf(ios_base::showbase);
823 return __str;
828 noshowbase(ios_base& __str)
830 __str.unsetf(ios_base::showbase);
831 return __str;
836 showpoint(ios_base& __str)
838 __str.setf(ios_base::showpoint);
839 return __str;
844 noshowpoint(ios_base& __str)
846 __str.unsetf(ios_base::showpoint);
847 return __str;
852 showpos(ios_base& __str)
854 __str.setf(ios_base::showpos);
855 return __str;
860 noshowpos(ios_base& __str)
862 __str.unsetf(ios_base::showpos);
863 return __str;
868 skipws(ios_base& __str)
870 __str.setf(ios_base::skipws);
871 return __str;
876 noskipws(ios_base& __str)
878 __str.unsetf(ios_base::skipws);
879 return __str;
884 uppercase(ios_base& __str)
886 __str.setf(ios_base::uppercase);
887 return __str;
892 nouppercase(ios_base& __str)
894 __str.unsetf(ios_base::uppercase);
895 return __str;
900 unitbuf(ios_base& __str)
902 __str.setf(ios_base::unitbuf);
903 return __str;
908 nounitbuf(ios_base& __str)
910 __str.unsetf(ios_base::unitbuf);
911 return __str;
916 internal(ios_base& __str)
918 __str.setf(ios_base::internal, ios_base::adjustfield);
919 return __str;
924 left(ios_base& __str)
926 __str.setf(ios_base::left, ios_base::adjustfield);
927 return __str;
932 right(ios_base& __str)
934 __str.setf(ios_base::right, ios_base::adjustfield);
935 return __str;
940 dec(ios_base& __str)
942 __str.setf(ios_base::dec, ios_base::basefield);
943 return __str;
948 hex(ios_base& __str)
950 __str.setf(ios_base::hex, ios_base::basefield);
951 return __str;
956 oct(ios_base& __str)
958 __str.setf(ios_base::oct, ios_base::basefield);
959 return __str;
964 fixed(ios_base& __str)
966 __str.setf(ios_base::fixed, ios_base::floatfield);
967 return __str;
972 scientific(ios_base& __str)
974 __str.setf(ios_base::scientific, ios_base::floatfield);
975 return __str;
980 hexfloat(ios_base& __str)
982 __str.setf(ios_base::fixed | ios_base::scientific, ios_base::floatfield);
983 return __str;
988 defaultfloat(ios_base& __str)
990 __str.unsetf(ios_base::floatfield);
991 return __str;