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

  /frameworks/base/tools/aapt2/io/
BigBufferStream.cpp 46 void BigBufferInputStream::BackUp(size_t count) {
88 void BigBufferOutputStream::BackUp(size_t count) {
89 buffer_->BackUp(count);
StringStream.cpp 38 void StringInputStream::BackUp(size_t count) {
76 void StringOutputStream::BackUp(size_t count) {
FileStream.cpp 65 // Deal with any remaining bytes after BackUp was called.
91 void FileInputStream::BackUp(size_t count) {
161 void FileOutputStream::BackUp(size_t count) {
  /external/perfetto/src/tracing/core/
sliced_protobuf_input_stream.cc 45 void SlicedProtobufInputStream::BackUp(int count) {
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_util.cc 56 void GrpcByteBufferSource::BackUp(int count) {
67 BackUp(size - count);
  /frameworks/base/tools/aapt2/util/
BigBuffer.h 88 * Use BackUp() to give back any bytes that were not used.
97 void BackUp(size_t count);
156 inline void BigBuffer::BackUp(size_t count) {
  /frameworks/base/tools/aapt2/compile/
PngChunkFilter.cpp 99 // In case BackUp was called, we must consume the window.
164 void PngChunkFilter::BackUp(size_t count) {
  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 165 void GzipInputStream::BackUp(int count) {
178 BackUp(size - count);
266 sub_stream_->BackUp(zcontext_.avail_out);
297 void GzipOutputStream::BackUp(int count) {
zero_copy_stream_impl_lite.cc 84 void ArrayInputStream::BackUp(int count) {
86 << "BackUp() can only be called after a successful Next().";
137 void ArrayOutputStream::BackUp(int count) {
139 << "BackUp() can only be called after a successful Next().";
190 void StringOutputStream::BackUp(int count) {
275 // We have data left over from a previous BackUp(), so just return that.
300 void CopyingInputStreamAdaptor::BackUp(int count) {
302 << " BackUp() can only be called after Next().";
307 << " Parameter to BackUp() can't be negative.";
320 // First skip any bytes left over from a previous BackUp()
    [all...]
coded_stream_unittest.cc 236 virtual void BackUp(int count) {
    [all...]
tokenizer_unittest.cc 144 void BackUp(int count) { return array_stream_.BackUp(count); }
    [all...]
zero_copy_stream_impl.cc 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)
    [all...]
  /external/protobuf/src/google/protobuf/util/
json_util_test.cc 200 virtual void BackUp(int length) {
  /system/extras/perfprofd/
perfprofd_io.cc 68 void BackUp(int count) override;
187 next_->BackUp(stream_->avail_out);
221 void GzipOutputStream::BackUp(int count) {
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 391 virtual void BackUp(int count) { inner_->BackUp(count); }
    [all...]

Completed in 331 milliseconds