Home
last modified time | relevance | path

Searched refs:test_ostream (Results 1 – 4 of 4) sorted by relevance

/llvm-project/libcxx/test/std/input.output/iostream.format/output.streams/ostream.cons/
H A Dmove.pass.cpp30 struct test_ostream struct
34 test_ostream(testbuf<CharT>* sb) : base(sb) {} in test_ostream() argument
36 test_ostream(test_ostream&& s) in test_ostream() argument
45 test_ostream<char> os1(&sb); in main()
46 test_ostream<char> os(std::move(os1)); in main()
60 test_ostream<wchar_t> os1(&sb); in main()
61 test_ostream<wchar_t> os(std::move(os1)); in main()
/llvm-project/libcxx/test/std/input.output/iostream.format/output.streams/ostream.assign/
H A Dmove_assign.pass.cpp30 struct test_ostream struct
34 test_ostream(testbuf<CharT>* sb) : base(sb) {} in test_ostream() argument
36 test_ostream& operator=(test_ostream&& s) in operator =() argument
46 test_ostream<char> os1(&sb1); in main()
47 test_ostream<char> os2(&sb2); in main()
70 test_ostream<wchar_t> os1(&sb1); in main()
71 test_ostream<wchar_t> os2(&sb2); in main()
H A Dmember_swap.pass.cpp29 struct test_ostream struct
33 test_ostream(testbuf<CharT>* sb) : base(sb) {} in test_ostream() function
35 void swap(test_ostream& s) {base::swap(s);} in swap() argument
43 test_ostream<char> os1(&sb1); in main()
44 test_ostream<char> os2(&sb2); in main()
67 test_ostream<wchar_t> os1(&sb1); in main()
68 test_ostream<wchar_t> os2(&sb2); in main()
/llvm-project/libcxx/test/libcxx/input.output/iostream.format/output.streams/
H A Dtraits_mismatch.verify.cpp23 struct test_ostream
21 struct test_ostream global() struct