Home | History | Annotate | Download | only in conversions.buffer

Lines Matching refs:overflow

14 // int_type overflow(int_type c = traits::eof());
38 virtual int_type overflow(int_type c = traits_type::eof()) {return base::overflow(c);}
44 std::ofstream bs("overflow.dat");
49 assert(f.overflow(L'a') == L'a');
55 std::ifstream bs("overflow.dat");
59 std::remove("overflow.dat");
61 std::ofstream bs("overflow.dat");
67 assert(f.overflow('a') == 'a');
73 std::ifstream bs("overflow.dat");
77 std::remove("overflow.dat");
79 std::ofstream bs("overflow.dat");
86 std::ifstream f("overflow.dat");
99 std::remove("overflow.dat");