func net/textproto.TrimString

30 uses

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

	net/http
		cookie.go#L71: 	parts := strings.Split(textproto.TrimString(line), ";")
		cookie.go#L77: 		s = textproto.TrimString(s)
		cookie.go#L97: 	parts := strings.Split(textproto.TrimString(line), ";")
		cookie.go#L101: 	parts[0] = textproto.TrimString(parts[0])
		cookie.go#L106: 	name = textproto.TrimString(name)
		cookie.go#L121: 		parts[i] = textproto.TrimString(parts[i])
		cookie.go#L341: 		line = textproto.TrimString(line)
		cookie.go#L346: 			part = textproto.TrimString(part)
		cookie.go#L351: 			name = textproto.TrimString(name)
		fs.go#L432: 	s = textproto.TrimString(s)
		fs.go#L484: 		im = textproto.TrimString(im)
		fs.go#L534: 		buf = textproto.TrimString(buf)
		fs.go#L1018: 		ra = textproto.TrimString(ra)
		fs.go#L1026: 		start, end = textproto.TrimString(start), textproto.TrimString(end)
		h2_bundle.go#L6383: 			key = CanonicalHeaderKey(textproto.TrimString(key))
		h2_bundle.go#L7360: 	v = textproto.TrimString(v)
		h2_bundle.go#L7369: 		if f = textproto.TrimString(f); f != "" {
		header.go#L207: 			v = textproto.TrimString(v)
		request.go#L695: 		userAgent = textproto.TrimString(userAgent)
		server.go#L1585: 	v = textproto.TrimString(v)
		server.go#L1594: 		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#L581: 			if sf = textproto.TrimString(sf); sf != "" {

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

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