Lines Matching refs:inputValue
665 inputValue := json.RawMessage{}
666 if err := dec.Decode(&inputValue); err != nil {
669 if err := u.unmarshalValue(reflect.ValueOf(pb).Elem(), inputValue, nil); err != nil {
706 func (u *Unmarshaler) unmarshalValue(target reflect.Value, inputValue json.RawMessage, prop *proto.…
714 …if string(inputValue) == "null" && targetType != reflect.TypeOf(&stpb.Value{}) && !isJSONPBUnmarsh…
719 return u.unmarshalValue(target.Elem(), inputValue, prop)
723 return jsu.UnmarshalJSONPB(u, []byte(inputValue))
731 return u.unmarshalValue(target.Field(0), inputValue, prop)
737 if err := json.Unmarshal(inputValue, &jsonFields); err != nil {
792 unq, err := unquote(string(inputValue))
809 unq, err := unquote(string(inputValue))
824 if err := json.Unmarshal(inputValue, &m); err != nil {
839 if err := json.Unmarshal(inputValue, &s); err != nil {
851 ivStr := string(inputValue)
860 } else if err := json.Unmarshal(inputValue, &[]json.RawMessage{}); err == nil {
863 return u.unmarshalValue(reflect.ValueOf(lv).Elem(), inputValue, prop)
864 } else if err := json.Unmarshal(inputValue, &map[string]json.RawMessage{}); err == nil {
867 return u.unmarshalValue(reflect.ValueOf(sv).Elem(), inputValue, prop)
879 if inputValue[0] == '"' && prop != nil && prop.Enum != "" {
883 s := inputValue[1 : len(inputValue)-1]
902 if err := json.Unmarshal(inputValue, &jsonFields); err != nil {
993 if err := json.Unmarshal(inputValue, &slc); err != nil {
1011 if err := json.Unmarshal(inputValue, &mp); err != nil {
1051 if num, ok := nonFinite[string(inputValue)]; ok {
1062 if isNum && strings.HasPrefix(string(inputValue), `"`) {