func strconv.Quote

18 uses

	strconv (current package)
		number.go#L259: 	return "strconv." + e.Func + ": " + "parsing " + Quote(e.Num) + ": " + e.Err.Error()
		quote.go#L121: func Quote(s string) string {

	encoding/json
		decode.go#L153: 	return "json: cannot unmarshal object key " + strconv.Quote(e.Key) + " into unexported field " + e.Field.Name + " of type " + e.Type.String()
		encode.go#L272: 	return "json: invalid UTF-8 in string: " + strconv.Quote(e.S)
		scanner.go#L610: 	s := strconv.Quote(string(c))

	net/netip
		netip.go#L147: 	q := strconv.Quote
		netip.go#L1124: 		return ipp, errors.New("invalid port " + strconv.Quote(port) + " parsing " + strconv.Quote(s))
		netip.go#L1132: 		return AddrPort{}, errors.New("invalid ip:port " + strconv.Quote(s) + ", square brackets can only be used with IPv6 addresses")
		netip.go#L1134: 		return AddrPort{}, errors.New("invalid ip:port " + strconv.Quote(s) + ", IPv6 addresses must be surrounded by square brackets")
		netip.go#L1358: 	return "netip.ParsePrefix(" + strconv.Quote(err.in) + "): " + err.msg
		netip.go#L1386: 		return Prefix{}, parsePrefixError{in: s, msg: "bad bits after slash: " + strconv.Quote(bitsStr)}
		netip.go#L1391: 		return Prefix{}, parsePrefixError{in: s, msg: "bad bits after slash: " + strconv.Quote(bitsStr)}

	net/url
		url.go#L69: 	return "invalid URL escape " + strconv.Quote(string(e))
		url.go#L75: 	return "invalid character " + strconv.Quote(string(e)) + " in host name"

	reflect
		type.go#L2420: 			repr = append(repr, (" " + strconv.Quote(f.Name.Tag()))...)

	runtime/debug
		mod.go#L141: 			key = strconv.Quote(key)
		mod.go#L145: 			value = strconv.Quote(value)