HomeSort by relevance Sort by last modified time
    Searched defs:pbackfail (Results 1 - 7 of 7) sorted by null

  /external/libcxx/test/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/
pbackfail.pass.cpp 14 // int_type pbackfail(int_type c = EOF);
28 virtual int_type pbackfail(int_type c = EOF) {return base::pbackfail(c);} function in struct:test
41 assert(sb.pbackfail('3') == '3');
42 assert(sb.pbackfail('3') == EOF);
43 assert(sb.pbackfail('2') == '2');
44 assert(sb.pbackfail(EOF) != EOF);
45 assert(sb.pbackfail(EOF) == EOF);
56 assert(sb.pbackfail('3') == '3');
57 assert(sb.pbackfail('3') == '3')
    [all...]
  /external/libcxx/test/input.output/string.streams/stringbuf/stringbuf.virtuals/
pbackfail.pass.cpp 15 // int_type pbackfail(int_type c = traits::eof());
30 pbackfail(typename base::int_type c = base::type_traits::eof()) function in struct:testbuf
31 {return base::pbackfail(c);}
45 assert(sb.pbackfail('3') == '3');
46 assert(sb.pbackfail('3') == std::char_traits<char>::eof());
47 assert(sb.pbackfail('2') == '2');
48 assert(sb.pbackfail(std::char_traits<char>::eof()) != std::char_traits<char>::eof());
49 assert(sb.pbackfail(std::char_traits<char>::eof()) == std::char_traits<char>::eof());
59 assert(sb.pbackfail('3') == '3');
60 assert(sb.pbackfail('3') == '3')
    [all...]
  /external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.members/streambuf.pub.pback/
sputbackc.pass.cpp 35 int_type pbackfail(int_type c = traits_type::eof()) function in struct:test
sungetc.pass.cpp 35 int_type pbackfail(int_type c = traits_type::eof()) function in struct:test
  /external/libcxx/test/input.output/file.streams/fstreams/filebuf.virtuals/
pbackfail.pass.cpp 12 // int_type pbackfail(int_type c = traits::eof());
33 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);} function in struct:test_buf
44 assert(f.pbackfail('a') == -1);
52 assert(f.pbackfail('a') == 'a');
  /external/libcxx/test/localization/locales/locale.convenience/conversions/conversions.buffer/
pbackfail.pass.cpp 14 // int_type pbackfail(int_type c = traits::eof());
38 virtual int_type pbackfail(int_type c = traits_type::eof()) {return base::pbackfail(c);} function in struct:test_buf
48 assert(f.pbackfail(L'a') == test_buf::traits_type::eof());
55 assert(f.pbackfail(L'a') == test_buf::traits_type::eof());
  /external/libcxx/src/
strstream.cpp 193 strstreambuf::pbackfail(int_type __c) function in class:strstreambuf

Completed in 1061 milliseconds