Lines Matching defs:ios2
141 std::ios ios2(&sb2);
142 ios2.flags(std::ios::showpoint | std::ios::uppercase);
143 ios2.precision(2);
144 ios2.width(12);
145 ios2.imbue(std::locale(LOCALE_fr_FR_UTF_8));
146 ios2.exceptions(std::ios::eofbit);
147 ios2.setstate(std::ios::goodbit);
148 ios2.register_callback(g1, 7);
149 ios2.register_callback(g2, 8);
150 ios2.register_callback(g3, 9);
151 ios2.iword(0) = 4;
152 ios2.iword(1) = 5;
153 ios2.iword(2) = 6;
154 ios2.iword(3) = 7;
155 ios2.iword(4) = 8;
156 ios2.iword(5) = 9;
158 ios2.pword(0) = &d1;
159 ios2.pword(1) = &d2;
160 ios2.tie((std::ostream*)2);
161 ios2.fill('2');
169 ios1.copyfmt(ios2);