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

  /external/protobuf/src/google/protobuf/
wire_format.h 74 class LIBPROTOBUF_EXPORT WireFormat {
123 // WireFormat::SerializeWithCachedSizes() on the same object.
241 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(WireFormat);
262 inline WireFormatLite::WireType WireFormat::WireTypeForField(
271 inline WireFormatLite::WireType WireFormat::WireTypeForFieldType(
280 inline uint32 WireFormat::MakeTag(const FieldDescriptor* field) {
284 inline int WireFormat::TagSize(int field_number, FieldDescriptor::Type type) {
292 inline void WireFormat::VerifyUTF8String(const char* data, int size,
293 WireFormat::Operation op) {
295 WireFormat::VerifyUTF8StringFallback(data, size, op)
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java 87 if (WireFormat.getTagFieldNumber(lastTag) == 0) {
117 switch (WireFormat.getTagWireType(tag)) {
118 case WireFormat.WIRETYPE_VARINT:
121 case WireFormat.WIRETYPE_FIXED64:
124 case WireFormat.WIRETYPE_LENGTH_DELIMITED:
127 case WireFormat.WIRETYPE_START_GROUP:
130 WireFormat.makeTag(WireFormat.getTagFieldNumber(tag),
131 WireFormat.WIRETYPE_END_GROUP));
133 case WireFormat.WIRETYPE_END_GROUP
    [all...]
WireFormat.java 44 public final class WireFormat {
46 private WireFormat() {}
CodedOutputStream.java 136 writeTag(fieldNumber, WireFormat.WIRETYPE_FIXED64);
143 writeTag(fieldNumber, WireFormat.WIRETYPE_FIXED32);
150 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
157 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
164 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
171 writeTag(fieldNumber, WireFormat.WIRETYPE_FIXED64);
178 writeTag(fieldNumber, WireFormat.WIRETYPE_FIXED32);
185 writeTag(fieldNumber, WireFormat.WIRETYPE_VARINT);
192 writeTag(fieldNumber, WireFormat.WIRETYPE_LENGTH_DELIMITED);
199 writeTag(fieldNumber, WireFormat.WIRETYPE_START_GROUP)
    [all...]

Completed in 1587 milliseconds