net/url.URL.EscapedPath (method)

10 uses

	net/url (current package)
		url.go#L744: func (u *URL) EscapedPath() string {
		url.go#L896: 		path := u.EscapedPath()
		url.go#L1146: 		url.setPath(resolvePath(ref.EscapedPath(), ""))
		url.go#L1172: 	url.setPath(resolvePath(u.EscapedPath(), ref.EscapedPath()))
		url.go#L1189: 		result = u.EscapedPath()
		url.go#L1263: 	elem = append([]string{u.EscapedPath()}, elem...)

	net/http
		server.go#L2698: 	escapedPath := r.URL.EscapedPath()

	net/http/httputil
		reverseproxy.go#L240: 	apath := a.EscapedPath()
		reverseproxy.go#L241: 	bpath := b.EscapedPath()