Lines Matching refs:__c
47 virtual int_type pbackfail(int_type __c = traits_type::eof());
103 int __c = getc(__fp);
104 if (__c == EOF)
106 *__pbuf = static_cast<char>(__c);
111 wint_t __c = getwc(__fp);
112 if (__c == WEOF)
114 *__pbuf = static_cast<wchar_t>(__c);
119 inline bool __do_ungetc(int __c, FILE* __fp, char __dummy) {
120 if (ungetc(__c, __fp) == EOF)
125 inline bool __do_ungetc(std::wint_t __c, FILE* __fp, wchar_t __dummy) {
126 if (ungetwc(__c, __fp) == WEOF)
157 int __c = getc(__file_);
158 if (__c == EOF)
160 __extbuf[__i] = static_cast<char>(__c);
177 int __c = getc(__file_);
178 if (__c == EOF)
180 __extbuf[__nread] = static_cast<char>(__c);
202 typename __stdinbuf<_CharT>::int_type __stdinbuf<_CharT>::pbackfail(int_type __c) {
203 if (traits_type::eq_int_type(__c, traits_type::eof())) {
205 __c = __last_consumed_;
208 return __c;
233 __last_consumed_ = __c;
235 return __c;
253 virtual int_type overflow(int_type __c = traits_type::eof());
291 inline bool __do_fputc(char __c, FILE* __fp) {
292 if (fwrite(&__c, sizeof(__c), 1, __fp) != 1)
297 inline bool __do_fputc(wchar_t __c, FILE* __fp) {
301 if (fputwc(__c, __fp) == WEOF)
308 typename __stdoutbuf<_CharT>::int_type __stdoutbuf<_CharT>::overflow(int_type __c) {
311 if (!traits_type::eq_int_type(__c, traits_type::eof())) {
312 __1buf = traits_type::to_char_type(__c);
341 return traits_type::not_eof(__c);