Home
last modified time | relevance | path

Searched refs:formatPrimitive (Results 1 – 1 of 1) sorted by relevance

/external/syzkaller/vendor/github.com/google/go-cmp/cmp/internal/value/
Dformat.go55 return formatPrimitive(v.Type(), v.Bool(), conf)
57 return formatPrimitive(v.Type(), v.Int(), conf)
61 return formatPrimitive(v.Type(), formatHex(v.Uint()), conf)
63 return formatPrimitive(v.Type(), v.Uint(), conf)
65 return formatPrimitive(v.Type(), v.Float(), conf)
67 return formatPrimitive(v.Type(), v.Complex(), conf)
69 return formatPrimitive(v.Type(), fmt.Sprintf("%q", v), conf)
166 func formatPrimitive(t reflect.Type, v interface{}, conf formatConfig) string { func