Home
last modified time | relevance | path

Searched refs:MarshalText (Results 1 – 2 of 2) sorted by relevance

/external/golang-protobuf/proto/
Dtext_test.go53 func (*textMessage) MarshalText() ([]byte, error) { func
168 if err := proto.MarshalText(buf, newTestMessage()); err != nil {
179 if err := proto.MarshalText(buf, &textMessage{}); err != nil {
192 if err := proto.MarshalText(buf, test); err != nil {
240 proto.MarshalText(buf, m)
248 proto.MarshalText(w, m)
331 if err := proto.MarshalText(&buf, tc.in); err != nil {
380 err := proto.MarshalText(buf, newTestMessage())
Dtext.go539 text, err := etm.MarshalText()
806 text, err := etm.MarshalText()
845 func MarshalText(w io.Writer, pb Message) error { return defaultTextMarshaler.Marshal(w, pb) } func