Lines Matching defs:Message
358 func setFields(msg protoreflect.Message, items []starlark.Tuple) error {
377 func setField(msg protoreflect.Message, fdesc protoreflect.FieldDescriptor, value starlark.Value) e…
616 type Message struct { struct
622 func (m *Message) Message() protoreflect.ProtoMessage { return m.msg.Interface() } func
640 // unmarshalData constructs a Starlark proto.Message by decoding binary or text data.
658 func (m *Message) String() string {
702 func (m *Message) Type() string { return "proto.Message" }
703 func (m *Message) Truth() starlark.Bool { return true }
704 func (m *Message) Freeze() { *m.frozen = true }
705 …e) Hash() (h uint32, err error) { return uint32(uintptr(unsafe.Pointer(m))), nil } // identity hash
709 func (m *Message) Attr(name string) (starlark.Value, error) {
723 func (m *Message) getField(fdesc protoreflect.FieldDescriptor) starlark.Value {
793 func (m *Message) SetField(name string, v starlark.Value) error {
807 func (m *Message) AttrNames() []string {