Searched defs:test_iostream (Results 1 - 3 of 3) sorted by relevance

/external/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.cons/
H A Dmove.pass.cpp30 struct test_iostream struct in inherits:std::basic_iostream
34 test_iostream(testbuf<CharT>* sb) : base(sb) {} function in struct:test_iostream
36 test_iostream(test_iostream&& s) function in struct:test_iostream
47 test_iostream<char> is1(&sb);
48 test_iostream<char> is(std::move(is1));
63 test_iostream<wchar_t> is1(&sb);
64 test_iostream<wchar_t> is(std::move(is1));
/external/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.assign/
H A Dmember_swap.pass.cpp28 struct test_iostream struct in inherits:std::basic_iostream
32 test_iostream(testbuf<CharT>* sb) : base(sb) {} function in struct:test_iostream
34 void swap(test_iostream& s) {base::swap(s);}
42 test_iostream<char> is1(&sb1);
43 test_iostream<char> is2(&sb2);
65 test_iostream<wchar_t> is1(&sb1);
66 test_iostream<wchar_t> is2(&sb2);
H A Dmove_assign.pass.cpp30 struct test_iostream struct in inherits:std::basic_iostream
34 test_iostream(testbuf<CharT>* sb) : base(sb) {} function in struct:test_iostream
36 test_iostream& operator=(test_iostream&& s)
48 test_iostream<char> is1(&sb1);
49 test_iostream<char> is2(&sb2);
71 test_iostream<wchar_t> is1(&sb1);
72 test_iostream<wchar_t> is2(&sb2);

Completed in 67 milliseconds