encoding.TextUnmarshaler.UnmarshalText (method)

8 uses

	encoding (current package)
		encoding.go#L65: 	UnmarshalText(text []byte) error

	encoding/json
		decode.go#L891: 		return ut.UnmarshalText(s)

	encoding/xml
		read.go#L247: 	return val.UnmarshalText(buf)
		read.go#L279: 			return textUnmarshaler.UnmarshalText([]byte(attr.Value))
		read.go#L286: 				return textUnmarshaler.UnmarshalText([]byte(attr.Value))
		read.go#L594: 			if err := textUnmarshaler.UnmarshalText(data); err != nil {
		read.go#L605: 				if err := textUnmarshaler.UnmarshalText(data); err != nil {

	flag
		flag.go#L318: 	return v.p.UnmarshalText([]byte(s))