Lines Matching refs:is_
122 GenericStreamWrapper(InputStream& is): is_(is) {} in GenericStreamWrapper()
124 Ch Peek() const { return is_.Peek(); } in Peek()
125 Ch Take() { return is_.Take(); } in Take()
126 size_t Tell() { return is_.Tell(); } in Tell()
127 Ch* PutBegin() { return is_.PutBegin(); } in PutBegin()
128 void Put(Ch ch) { is_.Put(ch); } in Put()
129 void Flush() { is_.Flush(); } in Flush()
130 size_t PutEnd(Ch* ch) { return is_.PutEnd(ch); } in PutEnd()
133 const Ch* Peek4() const { return is_.Peek4(); } in Peek4()
136 UTFType GetType() const { return is_.GetType(); } in GetType()
137 bool HasBOM() const { return is_.HasBOM(); } in HasBOM()
140 InputStream& is_;