Lines Matching defs:wire_format
85 from google.protobuf.internal import wire_format
276 wire_format.WIRETYPE_VARINT, _DecodeSignedVarint32)
279 wire_format.WIRETYPE_VARINT, _DecodeSignedVarint)
281 UInt32Decoder = _SimpleDecoder(wire_format.WIRETYPE_VARINT, _DecodeVarint32)
282 UInt64Decoder = _SimpleDecoder(wire_format.WIRETYPE_VARINT, _DecodeVarint)
285 wire_format.WIRETYPE_VARINT, _DecodeVarint32, wire_format.ZigZagDecode)
287 wire_format.WIRETYPE_VARINT, _DecodeVarint, wire_format.ZigZagDecode)
293 Fixed32Decoder = _StructPackDecoder(wire_format.WIRETYPE_FIXED32, '<I')
294 Fixed64Decoder = _StructPackDecoder(wire_format.WIRETYPE_FIXED64, '<Q')
295 SFixed32Decoder = _StructPackDecoder(wire_format.WIRETYPE_FIXED32, '<i')
296 SFixed64Decoder = _StructPackDecoder(wire_format.WIRETYPE_FIXED64, '<q')
297 FloatDecoder = _StructPackDecoder(wire_format.WIRETYPE_FIXED32, '<f')
298 DoubleDecoder = _StructPackDecoder(wire_format.WIRETYPE_FIXED64, '<d')
301 wire_format.WIRETYPE_VARINT, _DecodeVarint, bool)
313 wire_format.WIRETYPE_LENGTH_DELIMITED)
350 wire_format.WIRETYPE_LENGTH_DELIMITED)
383 wire_format.WIRETYPE_END_GROUP)
389 wire_format.WIRETYPE_START_GROUP)
434 wire_format.WIRETYPE_LENGTH_DELIMITED)
481 MESSAGE_SET_ITEM_TAG = encoder.TagBytes(1, wire_format.WIRETYPE_START_GROUP)
497 type_id_tag_bytes = encoder.TagBytes(2, wire_format.WIRETYPE_VARINT)
498 message_tag_bytes = encoder.TagBytes(3, wire_format.WIRETYPE_LENGTH_DELIMITED)
499 item_end_tag_bytes = encoder.TagBytes(1, wire_format.WIRETYPE_END_GROUP)
622 wiretype_mask = wire_format.TAG_TYPE_MASK