Home | History | Annotate | Download | only in go1

Lines Matching refs:json

5 // This benchmark tests JSON encoding and decoding performance.
13 "encoding/json"
38 if err := json.Unmarshal(jsonbytes, &v); err != nil {
45 Tree *JSONNode `json:"tree"`
46 Username string `json:"username"`
50 Name string `json:"name"`
51 Kids []*JSONNode `json:"kids"`
52 CLWeight float64 `json:"cl_weight"`
53 Touches int `json:"touches"`
54 MinT int64 `json:"min_t"`
55 MaxT int64 `json:"max_t"`
56 MeanT int64 `json:"mean_t"`
61 if err := json.Unmarshal(jsonbytes, &r); err != nil {
68 buf, err := json.Marshal(&jsondata)