Searched defs:test_istream (Results 1 - 4 of 4) sorted by relevance

/external/libcxx/test/std/input.output/iostream.format/input.streams/istream/istream.cons/
H A Dcopy.fail.cpp24 struct test_istream struct in inherits:std::basic_istream
29 test_istream(test_istream&& s) function in struct:test_istream
34 test_istream& operator=(test_istream&& s) {
39 test_istream(test_istream const& s) function in struct:test_istream
44 test_istream& operator=(test_istream const& s) {
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
44 test_istream<char> is1(&sb);
45 test_istream<char> is(std::move(is1));
60 test_istream<wchar_t> is1(&sb);
61 test_istream<wchar_t> is(std::move(is1));
/external/libcxx/test/std/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);

Completed in 100 milliseconds