HomeSort by relevance Sort by last modified time
    Searched refs:SkipField (Results 1 - 25 of 39) sorted by null

1 2

  /external/protobuf/src/google/protobuf/
wire_format.h 133 static bool SkipField(io::CodedInputStream* input, uint32 tag,
272 virtual bool SkipField(io::CodedInputStream* input, uint32 tag);
wire_format_lite.cc 121 bool WireFormatLite::SkipField(
166 bool WireFormatLite::SkipField(
238 if (!SkipField(input, tag)) return false;
259 if (!SkipField(input, tag, output)) return false;
263 bool FieldSkipper::SkipField(
265 return WireFormatLite::SkipField(input, tag);
277 bool CodedOutputStreamFieldSkipper::SkipField(
279 return WireFormatLite::SkipField(input, tag, unknown_fields_);
wire_format_lite.h 162 // not recorded anywhere. See WireFormat::SkipField() for a version that
164 static bool SkipField(io::CodedInputStream* input, uint32 tag);
169 static bool SkipField(io::CodedInputStream* input, uint32 tag,
552 virtual bool SkipField(io::CodedInputStream* input, uint32 tag);
573 virtual bool SkipField(io::CodedInputStream* input, uint32 tag);
wire_format.cc 60 bool UnknownFieldSetFieldSkipper::SkipField(
62 return WireFormat::SkipField(input, tag, unknown_fields_);
74 bool WireFormat::SkipField(io::CodedInputStream* input, uint32 tag,
150 if (!SkipField(input, tag, unknown_fields)) return false;
493 return SkipField(input, tag,
780 if (!SkipField(input, tag, NULL)) return false;
    [all...]
empty.pb.cc 207 DO_(::google::protobuf::internal::WireFormatLite::SkipField(input, tag));
wrappers.pb.cc 426 DO_(::google::protobuf::internal::WireFormatLite::SkipField(input, tag));
684 DO_(::google::protobuf::internal::WireFormatLite::SkipField(input, tag));
942 DO_(::google::protobuf::internal::WireFormatLite::SkipField(input, tag));
    [all...]
duration.pb.cc 252 DO_(::google::protobuf::internal::WireFormatLite::SkipField(input, tag));
field_mask.pb.cc 218 DO_(::google::protobuf::internal::WireFormatLite::SkipField(input, tag));
map_entry_lite.h 165 if (!WireFormatLite::SkipField(input, tag)) return false;
source_context.pb.cc 217 DO_(::google::protobuf::internal::WireFormatLite::SkipField(input, tag));
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
wire_format.h 133 static bool SkipField(io::CodedInputStream* input, uint32 tag,
253 virtual bool SkipField(io::CodedInputStream* input, uint32 tag);
wire_format_lite.h 162 // not recorded anywhere. See WireFormat::SkipField() for a version that
164 static bool SkipField(io::CodedInputStream* input, uint32 tag);
509 virtual bool SkipField(io::CodedInputStream* input, uint32 tag);
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
wire_format.h 133 static bool SkipField(io::CodedInputStream* input, uint32 tag,
253 virtual bool SkipField(io::CodedInputStream* input, uint32 tag);
wire_format_lite.h 162 // not recorded anywhere. See WireFormat::SkipField() for a version that
164 static bool SkipField(io::CodedInputStream* input, uint32 tag);
509 virtual bool SkipField(io::CodedInputStream* input, uint32 tag);
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
wire_format.h 133 static bool SkipField(io::CodedInputStream* input, uint32 tag,
253 virtual bool SkipField(io::CodedInputStream* input, uint32 tag);
wire_format_lite.h 162 // not recorded anywhere. See WireFormat::SkipField() for a version that
164 static bool SkipField(io::CodedInputStream* input, uint32 tag);
509 virtual bool SkipField(io::CodedInputStream* input, uint32 tag);
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
wire_format.h 133 static bool SkipField(io::CodedInputStream* input, uint32 tag,
272 virtual bool SkipField(io::CodedInputStream* input, uint32 tag);
wire_format_lite.h 162 // not recorded anywhere. See WireFormat::SkipField() for a version that
164 static bool SkipField(io::CodedInputStream* input, uint32 tag);
169 static bool SkipField(io::CodedInputStream* input, uint32 tag,
552 virtual bool SkipField(io::CodedInputStream* input, uint32 tag);
573 virtual bool SkipField(io::CodedInputStream* input, uint32 tag);
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
wire_format.h 133 static bool SkipField(io::CodedInputStream* input, uint32 tag,
253 virtual bool SkipField(io::CodedInputStream* input, uint32 tag);
wire_format_lite.h 162 // not recorded anywhere. See WireFormat::SkipField() for a version that
164 static bool SkipField(io::CodedInputStream* input, uint32 tag);
509 virtual bool SkipField(io::CodedInputStream* input, uint32 tag);
  /external/nanopb-c/generator/google/protobuf/internal/
decoder.py 576 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):
718 return SkipField
720 SkipField = _FieldSkipper()
  /system/nvram/messages/
message_codec.cpp 116 if (!reader->SkipField()) {
  /system/nvram/messages/include/nvram/messages/
io.h 268 bool SkipField();
  /external/protobuf/python/google/protobuf/internal/
decoder.py 665 local_SkipField = SkipField
685 pos = SkipField(buffer, pos, end, tag_bytes)
762 # Optimization is not as heavy here because calls to SkipField() are rare,
799 new_pos = SkipField(buffer, pos, end, tag_bytes)
823 """Constructs the SkipField function."""
838 def SkipField(buffer, pos, end, tag_bytes):
852 return SkipField
854 SkipField = _FieldSkipper()
  /external/protobuf/src/google/protobuf/util/internal/
protostream_objectsource.cc 202 WireFormat::SkipField(stream_, tag, NULL);
268 WireFormat::SkipField(stream_, tag, NULL);
531 WireFormat::SkipField(os->stream_, tag, NULL);
539 // TODO(skarvaje): Avoid code duplication of for loops and SkipField logic.
555 WireFormat::SkipField(os->stream_, tag, NULL);
577 WireFormat::SkipField(os->stream_, tag, NULL);
    [all...]

Completed in 2018 milliseconds

1 2