Home | History | Annotate | Download | only in istream.assign

Lines Matching refs:is2

49         test_istream<char> is2(&sb2);
50 is2 = (std::move(is1));
59 assert(is2.rdbuf() == &sb2);
60 assert(is2.tie() == 0);
61 assert(is2.fill() == ' ');
62 assert(is2.rdstate() == is2.goodbit);
63 assert(is2.exceptions() == is2.goodbit);
64 assert(is2.flags() == (is2.skipws | is2.dec));
65 assert(is2.precision() == 6);
66 assert(is2.getloc().name() == "C");
72 test_istream<wchar_t> is2(&sb2);
73 is2 = (std::move(is1));
82 assert(is2.rdbuf() == &sb2);
83 assert(is2.tie() == 0);
84 assert(is2.fill() == ' ');
85 assert(is2.rdstate() == is2.goodbit);
86 assert(is2.exceptions() == is2.goodbit);
87 assert(is2.flags() == (is2.skipws | is2.dec));
88 assert(is2.precision() == 6);
89 assert(is2.getloc().name() == "C");