Home
last modified time | relevance | path

Searched refs:UnpackTag (Results 1 – 6 of 6) sorted by relevance

/external/protobuf/python/compatibility_tests/v2.5.0/tests/google/protobuf/internal/
Dwire_format_test.py59 field_number, wire_type = wire_format.UnpackTag(
64 self.assertRaises(TypeError, wire_format.UnpackTag, None)
65 self.assertRaises(TypeError, wire_format.UnpackTag, 'abc')
66 self.assertRaises(TypeError, wire_format.UnpackTag, 0.0)
67 self.assertRaises(TypeError, wire_format.UnpackTag, object())
/external/protobuf/python/google/protobuf/internal/
Dwire_format_test.py63 field_number, wire_type = wire_format.UnpackTag(
68 self.assertRaises(TypeError, wire_format.UnpackTag, None)
69 self.assertRaises(TypeError, wire_format.UnpackTag, 'abc')
70 self.assertRaises(TypeError, wire_format.UnpackTag, 0.0)
71 self.assertRaises(TypeError, wire_format.UnpackTag, object())
Dwire_format.py93 def UnpackTag(tag): function
Ddecoder.py924 field_number, wire_type = wire_format.UnpackTag(tag)
Dpython_message.py1176 field_number, wire_type = wire_format.UnpackTag(tag)
Dreflection_test.py100 return wire_format.UnpackTag(self.ReadVarint())