net/url.URL.RawPath (field)

11 uses

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

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