Home | History | Annotate | Download | only in json

Lines Matching refs:subv

674 		var subv reflect.Value
684 subv = mapElem
699 subv = v
702 if subv.Kind() == reflect.Ptr {
703 if subv.IsNil() {
704 subv.Set(reflect.New(subv.Type().Elem()))
706 subv = subv.Elem()
708 subv = subv.Field(i)
726 d.literalStore(nullLiteral, subv, false)
728 d.literalStore([]byte(qv), subv, true)
730 d.saveError(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal unquoted value into %v", subv.Type()))
733 d.value(subv)
737 // if using struct, subv points into struct already.
770 v.SetMapIndex(kv, subv)