net/url.URL.RawPath (field)

14 uses

	net/url (current package)
		url.go#L381: 	RawPath     string    // encoded path hint (see EscapedPath method)
		url.go#L725: 		u.RawPath = ""
		url.go#L727: 		u.RawPath = p
		url.go#L745: 	if u.RawPath != "" && validEncoded(u.RawPath, encodePath) {
		url.go#L746: 		p, err := unescape(u.RawPath, encodePath)
		url.go#L748: 			return u.RawPath

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

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