Home
last modified time | relevance | path

Searched refs:MsgWithRequired (Results 1 – 3 of 3) sorted by relevance

/external/golang-protobuf/jsonpb/jsonpb_test_proto/
Dtest_objects.pb.go641MsgWithRequired *MsgWithRequired `protobuf:"bytes,5,opt,name=msg_with_required,json=msgWithRequire… member
689 func (m *MsgWithOneof) GetMsgWithRequired() *MsgWithRequired {
691 return x.MsgWithRequired
964 type MsgWithRequired struct { struct
971 func (m *MsgWithRequired) Reset() { *m = MsgWithRequired{} } argument
972 func (m *MsgWithRequired) String() string { return proto.CompactTextString(m) } argument
973 func (*MsgWithRequired) ProtoMessage() {} argument
974 func (*MsgWithRequired) Descriptor() ([]byte, []int) { argument
978 func (m *MsgWithRequired) XXX_Unmarshal(b []byte) error { argument
981 func (m *MsgWithRequired) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { argument
[all …]
Dtest_objects.proto118 MsgWithRequired msg_with_required = 5;
159 message MsgWithRequired { message
164 optional MsgWithRequired subm = 1;
165 map<string, MsgWithRequired> map_field = 2;
166 repeated MsgWithRequired slice_field = 3;
178 optional MsgWithRequired extm = 125;
/external/golang-protobuf/jsonpb/
Djsonpb_test.go524 {"required", marshaler, &pb.MsgWithRequired{Str: proto.String("hello")}, `{"str":"hello"}`},
619 proto.SetExtension(msgExt, pb.E_Extm, &pb.MsgWithRequired{})
629 pb: &pb.MsgWithRequired{},
634 pb: &pb.MsgWithRequired{},
639 pb: &pb.MsgWithIndirectRequired{Subm: &pb.MsgWithRequired{}},
644 pb: &pb.MsgWithIndirectRequired{Subm: &pb.MsgWithRequired{}},
665 MapField: map[string]*pb.MsgWithRequired{
674 SliceField: []*pb.MsgWithRequired{
684 Union: &pb.MsgWithOneof_MsgWithRequired{&pb.MsgWithRequired{}},
844 {"required", Unmarshaler{}, `{"str":"hello"}`, &pb.MsgWithRequired{Str: proto.String("hello")}},
[all …]