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

Lines Matching refs:is

5 // This file is dual licensed under the MIT and the University of Illinois Open
31 std::basic_istream<char> is(&sb);
32 assert(is.rdbuf() == &sb);
33 assert(is.tie() == 0);
34 assert(is.fill() == ' ');
35 assert(is.rdstate() == is.goodbit);
36 assert(is.exceptions() == is.goodbit);
37 assert(is.flags() == (is.skipws | is.dec));
38 assert(is.precision() == 6);
39 assert(is.getloc().name() == "C");
40 assert(is.gcount() == 0);
44 std::basic_istream<wchar_t> is(&sb);
45 assert(is.rdbuf() == &sb);
46 assert(is.tie() == 0);
47 assert(is.fill() == L' ');
48 assert(is.rdstate() == is.goodbit);
49 assert(is.exceptions() == is.goodbit);
50 assert(is.flags() == (is.skipws | is.dec));
51 assert(is.precision() == 6);
52 assert(is.getloc().name() == "C");
53 assert(is.gcount() == 0);