net/url.URL.RawPath (field)

11 uses

	net/url (current package)
		url.go#L376: 	RawPath     string    // encoded path hint (see EscapedPath method)
		url.go#L699: 		u.RawPath = ""
		url.go#L701: 		u.RawPath = p
		url.go#L719: 	if u.RawPath != "" && validEncoded(u.RawPath, encodePath) {
		url.go#L720: 		p, err := unescape(u.RawPath, encodePath)
		url.go#L722: 			return u.RawPath

	net/http
		server.go#L2274: 		rp := strings.TrimPrefix(r.URL.RawPath, prefix)
		server.go#L2275: 		if len(p) < len(r.URL.Path) && (r.URL.RawPath == "" || len(rp) < len(r.URL.RawPath)) {
		server.go#L2281: 			r2.URL.RawPath = rp