Searched refs:test_stringbuf (Results 1 – 3 of 3) sorted by relevance
/llvm-project/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.cons/ |
H A D | move.pass.cpp | 28 struct test_stringbuf : std::basic_stringbuf<CharT> { struct 31 …test_stringbuf(std::basic_stringbuf<CharT>&& other) : std::basic_stringbuf<CharT>(std::move(other)… in test_stringbuf() argument 36 void check_different_pointers(test_stringbuf<CharT> const& other) const { in check_different_pointers() argument 52 test_stringbuf<CharT> buf1(s); in test() 53 test_stringbuf<CharT> buf(std::move(static_cast<StringBuf&>(buf1))); in test() 59 test_stringbuf<CharT> buf1(s, std::ios_base::in); in test() 60 test_stringbuf<CharT> buf(std::move(static_cast<StringBuf&>(buf1))); in test() 66 test_stringbuf<CharT> buf1(s, std::ios_base::out); in test() 67 test_stringbuf<CharT> buf(std::move(static_cast<StringBuf&>(buf1))); in test() 73 test_stringbuf<CharT> buf1; in test() [all …]
|
H A D | move.alloc.pass.cpp | 30 struct test_stringbuf : std::basic_stringbuf<CharT, std::char_traits<CharT>, test_allocator<CharT>>… struct 36 void check_different_pointers(test_stringbuf<CharT> const& other) const { in check_different_pointers() argument 52 test_stringbuf<CharT> buf1(s); in test() 54 test_stringbuf<CharT> buf(std::move(static_cast<StringBuf&>(buf1)), a); in test() 61 test_stringbuf<CharT> buf1(s, std::ios_base::in); in test() 63 test_stringbuf<CharT> buf(std::move(static_cast<StringBuf&>(buf1)), a); in test() 70 test_stringbuf<CharT> buf1(s, std::ios_base::out); in test() 72 test_stringbuf<CharT> buf(std::move(static_cast<StringBuf&>(buf1)), a); in test() 79 test_stringbuf<CharT> buf1; in test() 81 test_stringbuf<CharT> buf(std::move(static_cast<StringBuf&>(buf1)), a); in test()
|
/llvm-project/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.assign/ |
H A D | move.pass.cpp | 28 struct test_stringbuf : std::basic_stringbuf<CharT> { struct 34 void check_different_pointers(test_stringbuf<CharT> const& other) const { in check_different_pointers() argument 49 test_stringbuf<CharT> buf1(s); in test() 50 test_stringbuf<CharT> buf; in test() 56 test_stringbuf<CharT> buf1(s, std::ios_base::in); in test() 57 test_stringbuf<CharT> buf; in test() 63 test_stringbuf<CharT> buf1(s, std::ios_base::out); in test() 64 test_stringbuf<CharT> buf; in test() 70 test_stringbuf<CharT> buf1; in test() 71 test_stringbuf<CharT> buf; in test()
|