Home | History | Annotate | Download | only in ext

Lines Matching refs:_M_unget_buf

63       int_type _M_unget_buf;
68 : _M_file(__f), _M_unget_buf(traits_type::eof())
102 _M_unget_buf = this->syncgetc();
103 return _M_unget_buf;
115 if (!traits_type::eq_int_type(_M_unget_buf, __eof))
116 __ret = this->syncungetc(_M_unget_buf);
124 _M_unget_buf = __eof;
204 _M_unget_buf = traits_type::to_int_type(__s[__ret - 1]);
206 _M_unget_buf = traits_type::eof();
247 _M_unget_buf = traits_type::to_int_type(__s[__ret - 1]);
249 _M_unget_buf = traits_type::eof();