func strings.IndexByte

13 uses

	strings (current package)
		strings.go#L118: func IndexByte(s string, c byte) int {
		strings.go#L129: 		return IndexByte(s, byte(r))

	net/http
		h2_bundle.go#L9206: 						p := strings.IndexByte(v, ';')
		pattern.go#L111: 	i := strings.IndexByte(rest, '/')
		pattern.go#L117: 	if j := strings.IndexByte(p.host, '{'); j >= 0 {
		pattern.go#L140: 		i := strings.IndexByte(rest, '/')
		pattern.go#L146: 		if i := strings.IndexByte(seg, '{'); i < 0 {
		routing_tree.go#L210: 	i := strings.IndexByte(path, '/')

	vendor/golang.org/x/net/http/httpguts
		httplex.go#L135: 	for comma := strings.IndexByte(v, ','); comma != -1; comma = strings.IndexByte(v, ',') {

	vendor/golang.org/x/net/idna
		idna10.0.0.go#L568: 	p := strings.IndexByte(l.orig[l.curStart:], '.')

	vendor/golang.org/x/sys/cpu
		cpu.go#L228: 		i := strings.IndexByte(env, ',')
		cpu.go#L237: 		i = strings.IndexByte(field, '=')