Searched refs:Mappy (Results 1 – 3 of 3) sorted by relevance
/external/golang-protobuf/jsonpb/jsonpb_test_proto/ |
D | more_test_objects.pb.go | 207 type Mappy struct { struct 223 func (m *Mappy) Reset() { *m = Mappy{} } argument 224 func (m *Mappy) String() string { return proto.CompactTextString(m) } argument 225 func (*Mappy) ProtoMessage() {} argument 226 func (*Mappy) Descriptor() ([]byte, []int) { argument 230 func (m *Mappy) XXX_Unmarshal(b []byte) error { argument 233 func (m *Mappy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { argument 236 func (m *Mappy) XXX_Merge(src proto.Message) { argument 239 func (m *Mappy) XXX_Size() int { argument 242 func (m *Mappy) XXX_DiscardUnknown() { argument [all …]
|
D | more_test_objects.proto | 58 message Mappy { message
|
/external/golang-protobuf/jsonpb/ |
D | jsonpb_test.go | 444 …{"map<int64, int32>", marshaler, &pb.Mappy{Nummy: map[int64]int32{1: 2, 3: 4}}, `{"nummy":{"1":2,"… 445 …{"map<int64, int32>", marshalerAllOptions, &pb.Mappy{Nummy: map[int64]int32{1: 2, 3: 4}}, nummyPre… 447 &pb.Mappy{Strry: map[string]string{`"one"`: "two", "three": "four"}}, 450 &pb.Mappy{Objjy: map[int32]*pb.Simple3{1: {Dub: 1}}}, `{"objjy":{"1":{"dub":1}}}`}, 452 &pb.Mappy{Objjy: map[int32]*pb.Simple3{1: {Dub: 1}}}, objjyPrettyJSON}, 453 {"map<int64, string>", marshaler, &pb.Mappy{Buggy: map[int64]string{1234: "yup"}}, 455 …{"map<bool, bool>", marshaler, &pb.Mappy{Booly: map[bool]bool{false: true}}, `{"booly":{"false":tr… 456 …{"map<string, enum>", marshaler, &pb.Mappy{Enumy: map[string]pb.Numeral{"XIV": pb.Numeral_ROMAN}},… 457 …{"map<string, enum as int>", Marshaler{EnumsAsInts: true}, &pb.Mappy{Enumy: map[string]pb.Numeral{… 458 …{"map<int32, bool>", marshaler, &pb.Mappy{S32Booly: map[int32]bool{1: true, 3: false, 10: true, 12… [all …]
|