func net/textproto.TrimString

30 uses

	net/textproto (current package)
		textproto.go#L127: func TrimString(s string) string {

	net/http
		cookie.go#L95: 	parts := strings.Split(textproto.TrimString(line), ";")
		cookie.go#L101: 		s = textproto.TrimString(s)
		cookie.go#L121: 	parts := strings.Split(textproto.TrimString(line), ";")
		cookie.go#L125: 	parts[0] = textproto.TrimString(parts[0])
		cookie.go#L130: 	name = textproto.TrimString(name)
		cookie.go#L145: 		parts[i] = textproto.TrimString(parts[i])
		cookie.go#L390: 		line = textproto.TrimString(line)
		cookie.go#L395: 			part = textproto.TrimString(part)
		cookie.go#L400: 			name = textproto.TrimString(name)
		fs.go#L437: 	s = textproto.TrimString(s)
		fs.go#L489: 		im = textproto.TrimString(im)
		fs.go#L539: 		buf = textproto.TrimString(buf)
		fs.go#L1026: 		ra = textproto.TrimString(ra)
		fs.go#L1034: 		start, end = textproto.TrimString(start), textproto.TrimString(end)
		h2_bundle.go#L7217: 	v = textproto.TrimString(v)
		h2_bundle.go#L7226: 		if f = textproto.TrimString(f); f != "" {
		header.go#L207: 			v = textproto.TrimString(v)
		request.go#L695: 		userAgent = textproto.TrimString(userAgent)
		server.go#L1577: 	v = textproto.TrimString(v)
		server.go#L1586: 		if f = textproto.TrimString(f); f != "" {
		transfer.go#L671: 		first := textproto.TrimString(contentLens[0])
		transfer.go#L673: 			if first != textproto.TrimString(ct) {
		transfer.go#L1054: 	cl := textproto.TrimString(clHeaders[0])

	net/http/httputil
		reverseproxy.go#L594: 			if sf = textproto.TrimString(sf); sf != "" {

	net/http/internal/httpcommon
		httpcommon.go#L572: 			key = textproto.CanonicalMIMEHeaderKey(textproto.TrimString(key))

	golang.org/x/net/http2
		server.go#L3246: 	v = textproto.TrimString(v)
		server.go#L3255: 		if f = textproto.TrimString(f); f != "" {

	golang.org/x/net/internal/httpcommon
		request.go#L421: 			key = textproto.CanonicalMIMEHeaderKey(textproto.TrimString(key))