Home | History | Annotate | Download | only in basic.ios.members

Lines Matching refs:ios1

74     testios ios1(&sb1);
75 ios1.flags(std::ios::boolalpha | std::ios::dec | std::ios::fixed);
76 ios1.precision(1);
77 ios1.width(11);
78 ios1.imbue(std::locale(LOCALE_en_US_UTF_8));
79 ios1.exceptions(std::ios::failbit);
80 ios1.setstate(std::ios::eofbit);
81 ios1.register_callback(f1, 4);
82 ios1.register_callback(f2, 5);
83 ios1.iword(0) = 1;
84 ios1.iword(1) = 2;
85 ios1.iword(2) = 3;
87 ios1.pword(0) = &c1;
88 ios1.pword(1) = &c2;
89 ios1.pword(2) = &c3;
90 ios1.tie((std::ostream*)1);
91 ios1.fill('1');
116 ios1.swap(ios2);
118 assert(ios1.rdstate() == std::ios::goodbit);
119 assert(ios1.rdbuf() == &sb1);
120 assert(ios1.flags() == (std::ios::showpoint | std::ios::uppercase));
121 assert(ios1.precision() == 2);
122 assert(ios1.width() == 12);
123 assert(ios1.getloc().name() == LOCALE_fr_FR_UTF_8);
124 assert(ios1.exceptions() == std::ios::eofbit);
130 assert(ios1.iword(0) == 4);
131 assert(ios1.iword(1) == 5);
132 assert(ios1.iword(2) == 6);
133 assert(ios1.iword(3) == 7);
134 assert(ios1.iword(4) == 8);
135 assert(ios1.iword(5) == 9);
136 assert(ios1.pword(0) == &d1);
137 assert(ios1.pword(1) == &d2);
138 assert(ios1.tie() == (std::ostream*)2);
139 assert(ios1.fill() == '2');
140 ios1.imbue(std::locale("C"));