func strconv.Quote

22 uses

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

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

	net/netip
		netip.go#L147: 	q := strconv.Quote
		netip.go#L1081: 		return ipp, errors.New("invalid port " + strconv.Quote(port) + " parsing " + strconv.Quote(s))
		netip.go#L1089: 		return AddrPort{}, errors.New("invalid ip:port " + strconv.Quote(s) + ", square brackets can only be used with IPv6 addresses")
		netip.go#L1091: 		return AddrPort{}, errors.New("invalid ip:port " + strconv.Quote(s) + ", IPv6 addresses must be surrounded by square brackets")
		netip.go#L1279: 		return Prefix{}, errors.New("netip.ParsePrefix(" + strconv.Quote(s) + "): no '/'")
		netip.go#L1283: 		return Prefix{}, errors.New("netip.ParsePrefix(" + strconv.Quote(s) + "): " + err.Error())
		netip.go#L1287: 		return Prefix{}, errors.New("netip.ParsePrefix(" + strconv.Quote(s) + "): IPv6 zones cannot be present in a prefix")
		netip.go#L1293: 		return Prefix{}, errors.New("netip.ParsePrefix(" + strconv.Quote(s) + "): bad bits after slash: " + strconv.Quote(bitsStr))
		netip.go#L1300: 		return Prefix{}, errors.New("netip.ParsePrefix(" + strconv.Quote(s) + "): prefix length out of range")

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

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

	regexp
		regexp.go#L339: 	return strconv.Quote(s)

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