Home
last modified time | relevance | path

Searched refs:test_istream (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/input.output/iostream.format/input.streams/istream/istream.cons/
H A Dcopy.fail.cpp21 struct test_istream struct
26 test_istream(test_istream&& s) in test_istream() argument
31 test_istream& operator=(test_istream&& s) { in operator =() argument
36 test_istream(test_istream const& s) in test_istream() argument
41 test_istream& operator=(test_istream const& s) { in operator =() argument
H A Dmove.pass.cpp29 struct test_istream struct
33 test_istream(testbuf<CharT>* sb) : base(sb) {} in test_istream() argument
35 test_istream(test_istream&& s) in test_istream() function
43 test_istream<char> is1(&sb); in main()
44 test_istream<char> is(std::move(is1)); in main()
60 test_istream<wchar_t> is1(&sb); in main()
61 test_istream<wchar_t> is(std::move(is1)); in main()
/llvm-project-15.0.7/libcxx/test/std/input.output/iostream.format/input.streams/istream/istream.assign/
H A Dmove_assign.pass.cpp30 struct test_istream struct
34 test_istream(testbuf<CharT>* sb) : base(sb) {} in test_istream() function
36 test_istream& operator=(test_istream&& s) in operator =() argument
46 test_istream<char> is1(&sb1); in main()
47 test_istream<char> is2(&sb2); in main()
70 test_istream<wchar_t> is1(&sb1); in main()
71 test_istream<wchar_t> is2(&sb2); in main()
H A Dmember_swap.pass.cpp29 struct test_istream struct
33 test_istream(testbuf<CharT>* sb) : base(sb) {} in test_istream() function
35 void swap(test_istream& s) {base::swap(s);} in swap() argument
43 test_istream<char> is1(&sb1); in main()
44 test_istream<char> is2(&sb2); in main()
67 test_istream<wchar_t> is1(&sb1); in main()
68 test_istream<wchar_t> is2(&sb2); in main()
/llvm-project-15.0.7/libcxx/test/libcxx/input.output/iostream.format/input.streams/
H A Dtraits_mismatch.fail.cpp22 struct test_istream struct