Lines Matching refs:inputValue
684 inputValue := json.RawMessage{}
685 if err := dec.Decode(&inputValue); err != nil {
688 if err := u.unmarshalValue(reflect.ValueOf(pb).Elem(), inputValue, nil); err != nil {
725 func (u *Unmarshaler) unmarshalValue(target reflect.Value, inputValue json.RawMessage, prop *proto.…
733 …if string(inputValue) == "null" && targetType != reflect.TypeOf(&stpb.Value{}) && !isJSONPBUnmarsh…
738 return u.unmarshalValue(target.Elem(), inputValue, prop)
742 return jsu.UnmarshalJSONPB(u, []byte(inputValue))
750 return u.unmarshalValue(target.Field(0), inputValue, prop)
756 if err := json.Unmarshal(inputValue, &jsonFields); err != nil {
811 unq, err := unquote(string(inputValue))
828 unq, err := unquote(string(inputValue))
843 if err := json.Unmarshal(inputValue, &m); err != nil {
858 if err := json.Unmarshal(inputValue, &s); err != nil {
870 ivStr := string(inputValue)
879 } else if err := json.Unmarshal(inputValue, &[]json.RawMessage{}); err == nil {
882 return u.unmarshalValue(reflect.ValueOf(lv).Elem(), inputValue, prop)
883 } else if err := json.Unmarshal(inputValue, &map[string]json.RawMessage{}); err == nil {
886 return u.unmarshalValue(reflect.ValueOf(sv).Elem(), inputValue, prop)
898 if inputValue[0] == '"' && prop != nil && prop.Enum != "" {
902 s := inputValue[1 : len(inputValue)-1]
921 if err := json.Unmarshal(inputValue, &jsonFields); err != nil {
1012 if err := json.Unmarshal(inputValue, &slc); err != nil {
1030 if err := json.Unmarshal(inputValue, &mp); err != nil {
1070 if num, ok := nonFinite[string(inputValue)]; ok {
1081 if isNum && strings.HasPrefix(string(inputValue), `"`) {