Lines Matching refs:Ch
245 typename Ch; //!< Character type of the stream.
248 Ch Peek() const;
251 Ch Take();
259 Ch* PutBegin();
262 void Put(Ch c);
270 size_t PutEnd(Ch* begin);
285 typedef char Ch;
290 Ch Peek() const { // 1
292 return c == std::char_traits<char>::eof() ? '\0' : (Ch)c;
295 Ch Take() { // 2
297 return c == std::char_traits<char>::eof() ? '\0' : (Ch)c;
302 Ch* PutBegin() { assert(false); return 0; }
303 void Put(Ch) { assert(false); }
305 size_t PutEnd(Ch*) { assert(false); return 0; }
335 typedef char Ch;
340 Ch Peek() const { assert(false); return '\0'; }
341 Ch Take() { assert(false); return '\0'; }
344 Ch* PutBegin() { assert(false); return 0; }
345 void Put(Ch c) { os_.put(c); } // 1
347 size_t PutEnd(Ch*) { assert(false); return 0; }