net/url.URL.RawPath (field)

14 uses

	net/url (current package)
		url.go#L377: 	RawPath     string    // encoded path hint (see EscapedPath method)
		url.go#L700: 		u.RawPath = ""
		url.go#L702: 		u.RawPath = p
		url.go#L720: 	if u.RawPath != "" && validEncoded(u.RawPath, encodePath) {
		url.go#L721: 		p, err := unescape(u.RawPath, encodePath)
		url.go#L723: 			return u.RawPath

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

	net/http/httputil
		reverseproxy.go#L222: 	if a.RawPath == "" && b.RawPath == "" {
		reverseproxy.go#L273: 	req.URL.Path, req.URL.RawPath = joinURLPath(target, req.URL)