Home
last modified time | relevance | path

Searched refs:pbackfail (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.virtuals/
H A Dpbackfail.pass.cpp32 {return base::pbackfail(c);} in pbackfail()
42 tb.pbackfail(); in main()
51 assert(sb.pbackfail('3') == '3'); in main()
52 assert(sb.pbackfail('3') == std::char_traits<char>::eof()); in main()
53 assert(sb.pbackfail('2') == '2'); in main()
65 assert(sb.pbackfail('3') == '3'); in main()
66 assert(sb.pbackfail('3') == '3'); in main()
79 assert(sb.pbackfail(L'3') == L'3'); in main()
81 assert(sb.pbackfail(L'2') == L'2'); in main()
93 assert(sb.pbackfail(L'3') == L'3'); in main()
[all …]
/llvm-project-15.0.7/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/
H A Dpbackfail.pass.cpp29 virtual int_type pbackfail(int_type c = EOF) {return base::pbackfail(c);} in pbackfail() function
42 assert(sb.pbackfail('3') == '3'); in main()
43 assert(sb.pbackfail('3') == EOF); in main()
44 assert(sb.pbackfail('2') == '2'); in main()
45 assert(sb.pbackfail(EOF) != EOF); in main()
46 assert(sb.pbackfail(EOF) == EOF); in main()
57 assert(sb.pbackfail('3') == '3'); in main()
58 assert(sb.pbackfail('3') == '3'); in main()
59 assert(sb.pbackfail(EOF) != EOF); in main()
60 assert(sb.pbackfail(EOF) == EOF); in main()
/llvm-project-15.0.7/libcxx/test/std/localization/locales/locale.convenience/conversions/conversions.buffer/
H A Dpbackfail.pass.cpp45 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);} in pbackfail() function
55 assert(f.pbackfail(L'a') == test_buf::traits_type::eof()); in main()
62 assert(f.pbackfail(L'a') == test_buf::traits_type::eof()); in main()
/llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/fstreams/filebuf.virtuals/
H A Dpbackfail.pass.cpp34 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);} in pbackfail() function
45 typename test_buf<char>::int_type pbackResult = f.pbackfail('a'); in main()
58 typename test_buf<char>::int_type pbackResult = f.pbackfail('a'); in main()
/llvm-project-15.0.7/libcxx/test/std/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.pback/
H A Dsputbackc.pass.cpp36 int_type pbackfail(int_type = traits_type::eof()) in pbackfail() function
H A Dsungetc.pass.cpp36 int_type pbackfail(int_type = traits_type::eof()) in pbackfail() function
/llvm-project-15.0.7/libcxx/include/
H A Dstreambuf99 virtual int_type pbackfail(int_type c = traits_type::eof());
210 return pbackfail(traits_type::to_int_type(__c));
217 return pbackfail();
291 virtual int_type pbackfail(int_type __c = traits_type::eof());
452 basic_streambuf<_CharT, _Traits>::pbackfail(int_type)
H A D__std_stream50 virtual int_type pbackfail(int_type __c = traits_type::eof());
179 __stdinbuf<_CharT>::pbackfail(int_type __c)
H A Dstrstream46 virtual int_type pbackfail(int_type c = EOF);
180 virtual int_type pbackfail(int_type __c = EOF);
H A Dsstream47 virtual int_type pbackfail(int_type c = traits_type::eof());
254 virtual int_type pbackfail(int_type __c = traits_type::eof());
506 basic_stringbuf<_CharT, _Traits, _Allocator>::pbackfail(int_type __c)
H A Dfstream48 virtual int_type pbackfail(int_type c = traits_type::eof());
263 virtual int_type pbackfail(int_type __c = traits_type::eof());
796 basic_filebuf<_CharT, _Traits>::pbackfail(int_type __c)
H A Dlocale3951 virtual int_type pbackfail(int_type __c = traits_type::eof());
4071 wbuffer_convert<_Codecvt, _Elem, _Tr>::pbackfail(int_type __c)
/llvm-project-15.0.7/libcxx/src/
H A Dstrstream.cpp200 strstreambuf::pbackfail(int_type __c) in pbackfail() function in strstreambuf