Searched refs:BackUp (Results 1 - 25 of 37) sorted by last modified time

12

/external/protobuf/src/google/protobuf/compiler/
H A Dcommand_line_interface.cc265 virtual void BackUp(int count) { inner_->BackUp(count); } function in class:google::protobuf::compiler::CommandLineInterface::MemoryOutputStream
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.cc67 input_->BackUp(backup_bytes);
503 // we discarded, though, so that we can call input_->BackUp() to back
542 output_->BackUp(buffer_size_);
H A Dcoded_stream_unittest.cc1042 // We only expect BackUp() to be called at the end.
1063 void BackUp(int count) { function in class:google::protobuf::io::__anon28987::ReallyBigInputStream
1079 // input.BackUp() with the correct number of bytes on destruction.
H A Dgzip_stream.cc147 void GzipInputStream::BackUp(int count) { function in class:google::protobuf::io::GzipInputStream
160 BackUp(size - count);
257 sub_stream_->BackUp(zcontext_.avail_out);
288 void GzipOutputStream::BackUp(int count) { function in class:google::protobuf::io::GzipOutputStream
H A Dgzip_stream.h86 void BackUp(int count);
178 void BackUp(int count);
H A Dprinter.cc54 // Only BackUp() if we're sure we've successfully called Next() at least once.
56 output_->BackUp(buffer_size_);
H A Dtokenizer_unittest.cc142 void BackUp(int count) { return array_stream_.BackUp(count); } function in class:google::protobuf::io::__anon28990::TestInputStream
H A Dzero_copy_stream.h98 // output->BackUp(size - bytes);
151 // buffer that goes beyond what you wanted to read, you can use BackUp()
163 virtual void BackUp(int count) = 0;
202 // written to the output (unless BackUp() is called).
212 // end of your data, so you use BackUp() to back up.
224 virtual void BackUp(int count) = 0;
H A Dzero_copy_stream_impl.cc92 void FileInputStream::BackUp(int count) { function in class:google::protobuf::io::FileInputStream
93 impl_.BackUp(count);
195 void FileOutputStream::BackUp(int count) { function in class:google::protobuf::io::FileOutputStream
196 impl_.BackUp(count);
282 void IstreamInputStream::BackUp(int count) { function in class:google::protobuf::io::IstreamInputStream
283 impl_.BackUp(count);
326 void OstreamOutputStream::BackUp(int count) { function in class:google::protobuf::io::OstreamOutputStream
327 impl_.BackUp(count);
372 void ConcatenatingInputStream::BackUp(int count) { function in class:google::protobuf::io::ConcatenatingInputStream
374 streams_[0]->BackUp(coun
434 void LimitingInputStream::BackUp(int count) { function in class:google::protobuf::io::LimitingInputStream
[all...]
H A Dzero_copy_stream_impl.h92 void BackUp(int count);
175 void BackUp(int count);
226 void BackUp(int count);
270 void BackUp(int count);
313 void BackUp(int count);
339 void BackUp(int count);
H A Dzero_copy_stream_impl_lite.cc78 void ArrayInputStream::BackUp(int count) { function in class:google::protobuf::io::ArrayInputStream
80 << "BackUp() can only be called after a successful Next().";
131 void ArrayOutputStream::BackUp(int count) { function in class:google::protobuf::io::ArrayOutputStream
133 << "BackUp() can only be called after a successful Next().";
175 void StringOutputStream::BackUp(int count) { function in class:google::protobuf::io::StringOutputStream
230 // We have data left over from a previous BackUp(), so just return that.
255 void CopyingInputStreamAdaptor::BackUp(int count) { function in class:google::protobuf::io::CopyingInputStreamAdaptor
257 << " BackUp() can only be called after Next().";
262 << " Parameter to BackUp() can't be negative.";
275 // First skip any bytes left over from a previous BackUp()
344 void CopyingOutputStreamAdaptor::BackUp(int count) { function in class:google::protobuf::io::CopyingOutputStreamAdaptor
[all...]
H A Dzero_copy_stream_impl_lite.h74 void BackUp(int count);
108 void BackUp(int count);
140 void BackUp(int count);
211 void BackUp(int count);
242 // BackUp(). These need to be returned again.
299 void BackUp(int count);
327 // returned by Next()). When BackUp() is called, we just reduce this.
H A Dzero_copy_stream_unittest.cc39 // of varying sizes, with a BackUp() after each chunk. It is read back
146 output->BackUp(out_size - in_size);
182 input->BackUp(in_size - out_size);
/external/protobuf/src/google/protobuf/testing/
H A Dzcgzip.cc70 out.BackUp(outlen);
74 out.BackUp(outlen - readlen);
/external/protobuf/src/google/protobuf/
H A Dtext_format.cc662 // Only BackUp() if we're sure we've successfully called Next() at least
665 output_->BackUp(buffer_size_);
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dcommand_line_interface.cc281 virtual void BackUp(int count) { inner_->BackUp(count); } function in class:google::protobuf::compiler::CommandLineInterface::MemoryOutputStream
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dcoded_stream.cc89 input_->BackUp(backup_bytes);
530 // we discarded, though, so that we can call input_->BackUp() to back
569 output_->BackUp(buffer_size_);
H A Dcoded_stream_unittest.cc229 virtual void BackUp(int count) { function in class:google::protobuf::io::__anon14840::In
1130 // We only expect BackUp() to be called at the end.
1151 void BackUp(int count) { function in class:google::protobuf::io::__anon14840::ReallyBigInputStream
1167 // input.BackUp() with the correct number of bytes on destruction.
H A Dgzip_stream.cc163 void GzipInputStream::BackUp(int count) { function in class:google::protobuf::io::GzipInputStream
176 BackUp(size - count);
262 sub_stream_->BackUp(zcontext_.avail_out);
293 void GzipOutputStream::BackUp(int count) { function in class:google::protobuf::io::GzipOutputStream
H A Dgzip_stream.h87 void BackUp(int count);
180 void BackUp(int count);
H A Dprinter.cc53 // Only BackUp() if we have called Next() at least once and never failed.
55 output_->BackUp(buffer_size_);
H A Dtokenizer_unittest.cc143 void BackUp(int count) { return array_stream_.BackUp(count); } function in class:google::protobuf::io::__anon14844::TestInputStream
H A Dzero_copy_stream.h98 // output->BackUp(size - bytes);
151 // buffer that goes beyond what you wanted to read, you can use BackUp()
163 virtual void BackUp(int count) = 0;
202 // written to the output (unless BackUp() is called).
212 // end of your data, so you use BackUp() to back up.
224 virtual void BackUp(int count) = 0;
H A Dzero_copy_stream_impl.cc93 void FileInputStream::BackUp(int count) { function in class:google::protobuf::io::FileInputStream
94 impl_.BackUp(count);
196 void FileOutputStream::BackUp(int count) { function in class:google::protobuf::io::FileOutputStream
197 impl_.BackUp(count);
283 void IstreamInputStream::BackUp(int count) { function in class:google::protobuf::io::IstreamInputStream
284 impl_.BackUp(count);
327 void OstreamOutputStream::BackUp(int count) { function in class:google::protobuf::io::OstreamOutputStream
328 impl_.BackUp(count);
373 void ConcatenatingInputStream::BackUp(int count) { function in class:google::protobuf::io::ConcatenatingInputStream
375 streams_[0]->BackUp(coun
435 void LimitingInputStream::BackUp(int count) { function in class:google::protobuf::io::LimitingInputStream
[all...]
H A Dzero_copy_stream_impl.h92 void BackUp(int count);
175 void BackUp(int count);
226 void BackUp(int count);
270 void BackUp(int count);
313 void BackUp(int count);
339 void BackUp(int count);

Completed in 235 milliseconds

12