Home
last modified time | relevance | path

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

/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.cons/
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
47 test_ostream<char> os1(&sb); in main()
48 test_ostream<char> os(std::move(os1)); in main()
61 test_ostream<wchar_t> os1(&sb); in main()
62 test_ostream<wchar_t> os(std::move(os1)); in main()
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.assign/
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
48 test_ostream<char> os1(&sb1); in main()
49 test_ostream<char> os2(&sb2); in main()
71 test_ostream<wchar_t> os1(&sb1); in main()
72 test_ostream<wchar_t> os2(&sb2); in main()
Dmember_swap.pass.cpp28 struct test_ostream struct
32 test_ostream(testbuf<CharT>* sb) : base(sb) {} in test_ostream() argument
34 void swap(test_ostream& s) {base::swap(s);} in swap() argument
42 test_ostream<char> os1(&sb1); in main()
43 test_ostream<char> os2(&sb2); in main()
65 test_ostream<wchar_t> os1(&sb1); in main()
66 test_ostream<wchar_t> os2(&sb2); in main()