OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BackUp
(Results
1 - 6
of
6
) sorted by null
/external/protobuf/src/google/protobuf/io/
gzip_stream.cc
147
void GzipInputStream::
BackUp
(int count) {
160
BackUp
(size - count);
257
sub_stream_->
BackUp
(zcontext_.avail_out);
288
void GzipOutputStream::
BackUp
(int count) {
zero_copy_stream_impl_lite.cc
78
void ArrayInputStream::
BackUp
(int count) {
80
<< "
BackUp
() can only be called after a successful Next().";
131
void ArrayOutputStream::
BackUp
(int count) {
133
<< "
BackUp
() can only be called after a successful Next().";
175
void StringOutputStream::
BackUp
(int count) {
230
// We have data left over from a previous
BackUp
(), so just return that.
255
void CopyingInputStreamAdaptor::
BackUp
(int count) {
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
()
[
all
...]
coded_stream_unittest.cc
[
all
...]
tokenizer_unittest.cc
142
void
BackUp
(int count) { return array_stream_.
BackUp
(count); }
zero_copy_stream_impl.cc
92
void FileInputStream::
BackUp
(int count) {
93
impl_.
BackUp
(count);
195
void FileOutputStream::
BackUp
(int count) {
196
impl_.
BackUp
(count);
282
void IstreamInputStream::
BackUp
(int count) {
283
impl_.
BackUp
(count);
326
void OstreamOutputStream::
BackUp
(int count) {
327
impl_.
BackUp
(count);
372
void ConcatenatingInputStream::
BackUp
(int count) {
374
streams_[0]->
BackUp
(count)
[
all
...]
/external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc
265
virtual void
BackUp
(int count) { inner_->
BackUp
(count); }
[
all
...]
Completed in 196 milliseconds