net/url.URL.RawPath (field)

28 uses

	net/url (current package)
		url.go#L364: 	RawPath     string    // encoded path hint (see EscapedPath method)
		url.go#L684: 		u.RawPath = ""
		url.go#L686: 		u.RawPath = p
		url.go#L701: 	if u.RawPath != "" && validEncoded(u.RawPath, encodePath) {
		url.go#L702: 		p, err := unescape(u.RawPath, encodePath)
		url.go#L704: 			return u.RawPath

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

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

	cloud.google.com/go/storage
		post_policy_v4.go#L317: 		RawPath: pathEncodeV4(path),
		storage.go#L556: 	u.RawPath = pathEncodeV4(u.Path)
		storage.go#L561: 	fmt.Fprintf(buf, "/%s\n", u.RawPath)

	github.com/aws/aws-sdk-go/aws/ec2metadata
		service.go#L102: 		u.RawPath = ""

	github.com/aws/aws-sdk-go/private/protocol/rest
		build.go#L71: 	r.HTTPRequest.URL.RawPath = r.HTTPRequest.URL.Path
		build.go#L205: 	u.RawPath = strings.Replace(u.RawPath, "{"+name+"}", EscapePath(value, true), -1)
		build.go#L206: 	u.RawPath = strings.Replace(u.RawPath, "{"+name+"+}", EscapePath(value, false), -1)
		build.go#L245: 	u.RawPath = path.Clean(u.RawPath)
		build.go#L249: 		u.RawPath += "/"

	google.golang.org/api/googleapi
		googleapi.go#L306: 		u.RawPath = escaped

	google.golang.org/grpc/internal/credentials
		spiffe.go#L49: 		if len(uri.Host) == 0 || len(uri.RawPath) == 0 || len(uri.Path) == 0 {