Home
last modified time | relevance | path

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

/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.cons/
Dmove.pass.cpp31 struct test_ostream struct
35 test_ostream(testbuf<CharT>* sb) : base(sb) {} in test_ostream() argument
37 test_ostream(test_ostream&& s) in test_ostream() argument
46 test_ostream<char> os1(&sb); in main()
47 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()
/external/llvm-project/libcxx/test/std/input.output/iostream.format/output.streams/ostream.cons/
Dmove.pass.cpp32 struct test_ostream struct
36 test_ostream(testbuf<CharT>* sb) : base(sb) {} in test_ostream() argument
38 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.cpp31 struct test_ostream struct
35 test_ostream(testbuf<CharT>* sb) : base(sb) {} in test_ostream() argument
37 test_ostream& operator=(test_ostream&& s) in operator =() argument
47 test_ostream<char> os1(&sb1); in main()
48 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()
Dmember_swap.pass.cpp28 struct test_ostream struct
32 test_ostream(testbuf<CharT>* sb) : base(sb) {} in test_ostream() function
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()
/external/llvm-project/libcxx/test/std/input.output/iostream.format/output.streams/ostream.assign/
Dmove_assign.pass.cpp32 struct test_ostream struct
36 test_ostream(testbuf<CharT>* sb) : base(sb) {} in test_ostream() argument
38 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.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()
66 test_ostream<wchar_t> os1(&sb1); in main()
67 test_ostream<wchar_t> os2(&sb2); in main()
/external/libcxx/test/libcxx/input.output/iostream.format/output.streams/
Dtraits_mismatch.fail.cpp21 struct test_ostream struct
/external/llvm-project/libcxx/test/libcxx/input.output/iostream.format/output.streams/
Dtraits_mismatch.fail.cpp20 struct test_ostream struct
/external/fmtlib/test/
Dostream-test.cc167 struct test_ostream : std::ostream { in TEST() struct
168 explicit test_ostream(mock_streambuf& buffer) : std::ostream(&buffer) {} in TEST() function