HomeSort by relevance Sort by last modified time
    Searched defs:BackUp (Results 1 - 6 of 6) sorted by null

  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 163 void GzipInputStream::BackUp(int count) {
176 BackUp(size - count);
262 sub_stream_->BackUp(zcontext_.avail_out);
293 void GzipOutputStream::BackUp(int count) {
zero_copy_stream_impl_lite.cc 82 void ArrayInputStream::BackUp(int count) {
84 << "BackUp() can only be called after a successful Next().";
135 void ArrayOutputStream::BackUp(int count) {
137 << "BackUp() can only be called after a successful Next().";
187 void StringOutputStream::BackUp(int count) {
242 // We have data left over from a previous BackUp(), so just return that.
267 void CopyingInputStreamAdaptor::BackUp(int count) {
269 << " BackUp() can only be called after Next().";
274 << " Parameter to BackUp() can't be negative.";
287 // First skip any bytes left over from a previous BackUp()
    [all...]
coded_stream_unittest.cc 229 virtual void BackUp(int count) {
    [all...]
tokenizer_unittest.cc 143 void BackUp(int count) { return array_stream_.BackUp(count); }
    [all...]
zero_copy_stream_impl.cc 93 void FileInputStream::BackUp(int count) {
94 impl_.BackUp(count);
196 void FileOutputStream::BackUp(int count) {
197 impl_.BackUp(count);
283 void IstreamInputStream::BackUp(int count) {
284 impl_.BackUp(count);
327 void OstreamOutputStream::BackUp(int count) {
328 impl_.BackUp(count);
373 void ConcatenatingInputStream::BackUp(int count) {
375 streams_[0]->BackUp(count)
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 284 virtual void BackUp(int count) { inner_->BackUp(count); }
    [all...]

Completed in 624 milliseconds