Searched defs:SkipField (Results 1 - 5 of 5) sorted by relevance

/external/nanopb-c/generator/google/protobuf/internal/
H A Ddecoder.py576 local_SkipField = SkipField
596 pos = SkipField(buffer, pos, end, tag_bytes)
629 # Optimization is not as heavy here because calls to SkipField() are rare,
664 new_pos = SkipField(buffer, pos, end, tag_bytes)
688 """Constructs the SkipField function."""
704 def SkipField(buffer, pos, end, tag_bytes): function in function:_FieldSkipper
718 return SkipField
720 SkipField = _FieldSkipper() variable
/external/protobuf/python/google/protobuf/internal/
H A Ddecoder.py686 local_SkipField = SkipField
706 pos = SkipField(buffer, pos, end, tag_bytes)
739 # Optimization is not as heavy here because calls to SkipField() are rare,
776 new_pos = SkipField(buffer, pos, end, tag_bytes)
800 """Constructs the SkipField function."""
815 def SkipField(buffer, pos, end, tag_bytes): function in function:_FieldSkipper
829 return SkipField
831 SkipField = _FieldSkipper() variable
/external/protobuf/src/google/protobuf/
H A Dwire_format_lite.cc111 bool WireFormatLite::SkipField( function in class:google::protobuf::internal::WireFormatLite
156 bool WireFormatLite::SkipField( function in class:google::protobuf::internal::WireFormatLite
228 if (!SkipField(input, tag)) return false;
249 if (!SkipField(input, tag, output)) return false;
253 bool FieldSkipper::SkipField( function in class:google::protobuf::internal::FieldSkipper
255 return WireFormatLite::SkipField(input, tag);
267 bool CodedOutputStreamFieldSkipper::SkipField( function in class:google::protobuf::internal::CodedOutputStreamFieldSkipper
269 return WireFormatLite::SkipField(input, tag, unknown_fields_);
H A Dwire_format.cc68 bool UnknownFieldSetFieldSkipper::SkipField( function in class:google::protobuf::internal::UnknownFieldSetFieldSkipper
70 return WireFormat::SkipField(input, tag, unknown_fields_);
82 bool WireFormat::SkipField(io::CodedInputStream* input, uint32 tag, function in class:google::protobuf::internal::WireFormat
158 if (!SkipField(input, tag, unknown_fields)) return false;
472 return SkipField(input, tag,
727 if (!SkipField(input, tag, NULL)) return false;
H A Dtext_format.cc510 bool SkipField() { function in class:google::protobuf::TextFormat::Parser::ParserImpl
585 DO(SkipField());

Completed in 161 milliseconds