Home
last modified time | relevance | path

Searched refs:UnmarshalText (Results 1 – 7 of 7) sorted by relevance

/external/golang-protobuf/proto/
Dtext_parser_test.go565 err := UnmarshalText(test.in, pb)
591 if err := UnmarshalText("custom", msg); err != nil {
594 if UnmarshalText("not custom", msg) == nil {
602 if err := UnmarshalText("color: RED", pb); err != nil {
620 if err := UnmarshalText(in, m); err != nil {
653 if err := UnmarshalText(in, m); err != nil {
665 if err := UnmarshalText(in, m); err != nil {
675 if err := UnmarshalText(inOverwrite, m); err == nil {
694 err := UnmarshalText(benchInput, pb)
703 UnmarshalText(benchInput, pb)
Dany_test.go226 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(`
Dtext_test.go59 func (*textMessage) UnmarshalText(bytes []byte) error { func
345 if err := proto.UnmarshalText(s, pb); err != nil {
Dtext_parser.go873 func UnmarshalText(s string, pb Message) error { func
875 return um.UnmarshalText([]byte(s))
/external/pigweed/pw_target_runner/go/src/pigweed.dev/pw_target_runner_server/
Dmain.go48 if err := proto.UnmarshalText(string(content), &config); err != nil {
/external/tensorflow/tensorflow/go/genop/internal/
Dgenop_test.go800 if err := proto.UnmarshalText(test.opdef, &opdef); err != nil {
/external/starlark-go/lib/proto/
Dproto.go636 func UnmarshalText(desc protoreflect.MessageDescriptor, data []byte) (*Message, error) { func