Searched refs:test_ostream (Results 1 – 9 of 9) sorted by relevance
31 struct test_ostream struct35 test_ostream(testbuf<CharT>* sb) : base(sb) {} in test_ostream() argument37 test_ostream(test_ostream&& s) in test_ostream() argument46 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()
32 struct test_ostream struct36 test_ostream(testbuf<CharT>* sb) : base(sb) {} in test_ostream() argument38 test_ostream(test_ostream&& s) in test_ostream() argument47 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()
31 struct test_ostream struct35 test_ostream(testbuf<CharT>* sb) : base(sb) {} in test_ostream() argument37 test_ostream& operator=(test_ostream&& s) in operator =() argument47 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()
28 struct test_ostream struct32 test_ostream(testbuf<CharT>* sb) : base(sb) {} in test_ostream() function34 void swap(test_ostream& s) {base::swap(s);} in swap() argument42 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()
32 struct test_ostream struct36 test_ostream(testbuf<CharT>* sb) : base(sb) {} in test_ostream() argument38 test_ostream& operator=(test_ostream&& s) in operator =() argument48 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()
29 struct test_ostream struct33 test_ostream(testbuf<CharT>* sb) : base(sb) {} in test_ostream() function35 void swap(test_ostream& s) {base::swap(s);} in swap() argument43 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()
21 struct test_ostream struct
20 struct test_ostream struct
167 struct test_ostream : std::ostream { in TEST() struct168 explicit test_ostream(mock_streambuf& buffer) : std::ostream(&buffer) {} in TEST() function