Searched refs:UnmarshalText (Results 1 – 5 of 5) sorted by relevance
/external/golang-protobuf/proto/ |
D | text_parser_test.go | 532 err := UnmarshalText(test.in, pb) 558 if err := UnmarshalText("custom", msg); err != nil { 561 if UnmarshalText("not custom", msg) == nil { 569 if err := UnmarshalText("color: RED", pb); err != nil { 587 if err := UnmarshalText(in, m); err != nil { 620 if err := UnmarshalText(in, m); err != nil { 632 if err := UnmarshalText(in, m); err != nil { 642 if err := UnmarshalText(inOverwrite, m); err == nil { 661 err := UnmarshalText(benchInput, pb) 670 UnmarshalText(benchInput, pb)
|
D | any_test.go | 226 if err := proto.UnmarshalText(tt.t, got); err != nil { 233 if err := proto.UnmarshalText(tt.c, got); err != nil { 262 err := proto.UnmarshalText(` 274 err := proto.UnmarshalText(` 290 err := proto.UnmarshalText(`
|
D | text_test.go | 57 func (*textMessage) UnmarshalText(bytes []byte) error { func 343 if err := proto.UnmarshalText(s, pb); err != nil {
|
D | text_parser.go | 884 func UnmarshalText(s string, pb Message) error { func 886 err := um.UnmarshalText([]byte(s))
|
/external/tensorflow/tensorflow/go/genop/internal/ |
D | genop_test.go | 544 if err := proto.UnmarshalText(test.opdef, &opdef); err != nil {
|