Lines Matching refs:__str
847 boolalpha(ios_base& __str)
849 __str.setf(ios_base::boolalpha);
850 return __str;
855 noboolalpha(ios_base& __str)
857 __str.unsetf(ios_base::boolalpha);
858 return __str;
863 showbase(ios_base& __str)
865 __str.setf(ios_base::showbase);
866 return __str;
871 noshowbase(ios_base& __str)
873 __str.unsetf(ios_base::showbase);
874 return __str;
879 showpoint(ios_base& __str)
881 __str.setf(ios_base::showpoint);
882 return __str;
887 noshowpoint(ios_base& __str)
889 __str.unsetf(ios_base::showpoint);
890 return __str;
895 showpos(ios_base& __str)
897 __str.setf(ios_base::showpos);
898 return __str;
903 noshowpos(ios_base& __str)
905 __str.unsetf(ios_base::showpos);
906 return __str;
911 skipws(ios_base& __str)
913 __str.setf(ios_base::skipws);
914 return __str;
919 noskipws(ios_base& __str)
921 __str.unsetf(ios_base::skipws);
922 return __str;
927 uppercase(ios_base& __str)
929 __str.setf(ios_base::uppercase);
930 return __str;
935 nouppercase(ios_base& __str)
937 __str.unsetf(ios_base::uppercase);
938 return __str;
943 unitbuf(ios_base& __str)
945 __str.setf(ios_base::unitbuf);
946 return __str;
951 nounitbuf(ios_base& __str)
953 __str.unsetf(ios_base::unitbuf);
954 return __str;
959 internal(ios_base& __str)
961 __str.setf(ios_base::internal, ios_base::adjustfield);
962 return __str;
967 left(ios_base& __str)
969 __str.setf(ios_base::left, ios_base::adjustfield);
970 return __str;
975 right(ios_base& __str)
977 __str.setf(ios_base::right, ios_base::adjustfield);
978 return __str;
983 dec(ios_base& __str)
985 __str.setf(ios_base::dec, ios_base::basefield);
986 return __str;
991 hex(ios_base& __str)
993 __str.setf(ios_base::hex, ios_base::basefield);
994 return __str;
999 oct(ios_base& __str)
1001 __str.setf(ios_base::oct, ios_base::basefield);
1002 return __str;
1007 fixed(ios_base& __str)
1009 __str.setf(ios_base::fixed, ios_base::floatfield);
1010 return __str;
1015 scientific(ios_base& __str)
1017 __str.setf(ios_base::scientific, ios_base::floatfield);
1018 return __str;
1023 hexfloat(ios_base& __str)
1025 __str.setf(ios_base::fixed | ios_base::scientific, ios_base::floatfield);
1026 return __str;
1031 defaultfloat(ios_base& __str)
1033 __str.unsetf(ios_base::floatfield);
1034 return __str;