Searched defs:test_istream (Results 1 - 3 of 3) sorted by last modified time

/external/libcxx/test/input.output/iostream.format/input.streams/istream/istream.assign/
H A Dmember_swap.pass.cpp28 struct test_istream struct in inherits:std::basic_istream
32 test_istream(testbuf<CharT>* sb) : base(sb) {} function in struct:test_istream
34 void swap(test_istream& s) {base::swap(s);}
42 test_istream<char> is1(&sb1);
43 test_istream<char> is2(&sb2);
65 test_istream<wchar_t> is1(&sb1);
66 test_istream<wchar_t> is2(&sb2);
H A Dmove_assign.pass.cpp30 struct test_istream struct in inherits:std::basic_istream
34 test_istream(testbuf<CharT>* sb) : base(sb) {} function in struct:test_istream
36 test_istream& operator=(test_istream&& s)
48 test_istream<char> is1(&sb1);
49 test_istream<char> is2(&sb2);
71 test_istream<wchar_t> is1(&sb1);
72 test_istream<wchar_t> is2(&sb2);
/external/libcxx/test/input.output/iostream.format/input.streams/istream/istream.cons/
H A Dmove.pass.cpp30 struct test_istream struct in inherits:std::basic_istream
34 test_istream(testbuf<CharT>* sb) : base(sb) {} function in struct:test_istream
36 test_istream(test_istream&& s) function in struct:test_istream
47 test_istream<char> is1(&sb);
48 test_istream<char> is(std::move(is1));
63 test_istream<wchar_t> is1(&sb);
64 test_istream<wchar_t> is(std::move(is1));

Completed in 162 milliseconds