Home | History | Annotate | Download | only in io

Lines Matching defs:BackUp

94 void FileInputStream::BackUp(int count) {
95 impl_.BackUp(count);
197 void FileOutputStream::BackUp(int count) {
198 impl_.BackUp(count);
284 void IstreamInputStream::BackUp(int count) {
285 impl_.BackUp(count);
328 void OstreamOutputStream::BackUp(int count) {
329 impl_.BackUp(count);
374 void ConcatenatingInputStream::BackUp(int count) {
376 streams_[0]->BackUp(count);
378 GOOGLE_LOG(DFATAL) << "Can't BackUp() after failed Next().";
423 if (limit_ < 0) input_->BackUp(-limit_);
438 void LimitingInputStream::BackUp(int count) {
440 input_->BackUp(count - limit_);
443 input_->BackUp(count);