func strings.IndexByte

68 uses

	strings (current package)
		iter.go#L22: 			if i := IndexByte(s, '\n'); i >= 0 {
		strings.go#L119: func IndexByte(s string, c byte) int {
		strings.go#L131: 		return IndexByte(s, byte(r))
		strings.go#L151: 				o := IndexByte(s[i+1:], rs[last])

	encoding/xml
		marshal.go#L516: 		if i := strings.IndexByte(name, '['); i >= 0 {
		xml.go#L2071: 	j := strings.IndexByte(s[i:], sep)

	github.com/jackc/pgx/v5/pgtype
		box.go#L191: 	end = strings.IndexByte(str, ',')
		box.go#L199: 	end = strings.IndexByte(str, ')')
		box.go#L207: 	end = strings.IndexByte(str, ',')
		circle.go#L202: 	end := strings.IndexByte(str, ',')
		circle.go#L209: 	end = strings.IndexByte(str, ')')
		hstore.go#L291: 		nextBackslash: strings.IndexByte(in, '\\'),
		hstore.go#L347: 	nextDoubleQuote := strings.IndexByte(p.str[p.pos:], '"')
		hstore.go#L362: 	p.nextBackslash = strings.IndexByte(p.str[p.pos:], '\\')
		lseg.go#L191: 	end = strings.IndexByte(str, ',')
		lseg.go#L199: 	end = strings.IndexByte(str, ')')
		lseg.go#L207: 	end = strings.IndexByte(str, ',')
		numeric.go#L175: 	idx := strings.IndexByte(str, '.')
		path.go#L232: 		end := strings.IndexByte(str, ',')
		path.go#L239: 		end = strings.IndexByte(str, ')')
		polygon.go#L213: 		end := strings.IndexByte(str, ',')
		polygon.go#L220: 		end = strings.IndexByte(str, ')')

	github.com/valyala/fastjson
		parser.go#L283: 	if strings.IndexByte(s, '"') >= 0 || strings.IndexByte(s, '\\') >= 0 {
		parser.go#L295: 	n := strings.IndexByte(s, '\\')
		parser.go#L364: 		n = strings.IndexByte(s, '\\')
		parser.go#L392: 	n := strings.IndexByte(s, '"')
		parser.go#L413: 		n = strings.IndexByte(s, '"')
		parser.go#L526: 	if !o.keysUnescaped && strings.IndexByte(key, '\\') < 0 {
		update.go#L13: 	if !o.keysUnescaped && strings.IndexByte(key, '\\') < 0 {
		validate.go#L195: 	if n := strings.IndexByte(s, '"'); n >= 0 && strings.IndexByte(s[:n], '\\') < 0 {
		validate.go#L205: 		n := strings.IndexByte(rs, '\\')

	go.pact.im/x/phcformat
		params.go#L58: 	i := strings.IndexByte(s, '=')
		params.go#L64: 	j := strings.IndexByte(s, ',')

	go.uber.org/multierr
		error.go#L288: 		idx := strings.IndexByte(s, '\n')

	go/build
		build.go#L1856: 		if c := s[i]; c < utf8.RuneSelf && strings.IndexByte(safeString, c) < 0 {

	go/constant
		value.go#L204: 		if !f.IsInt() && strings.IndexByte(s, '.') < 0 {

	go/doc
		doc.go#L177: 			if i := strings.IndexByte(r, '['); i >= 0 {

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

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

	golang.org/x/net/internal/httpcommon
		request.go#L190: 						p := strings.IndexByte(v, ';')
		request.go#L439: 	if strings.IndexByte(rp.Authority, '@') != -1 && (rp.Scheme == "http" || rp.Scheme == "https") {

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

	golang.org/x/sys/unix
		syscall.go#L37: 	if strings.IndexByte(s, 0) != -1 {

	golang.org/x/text/internal/language
		language.go#L320: 		if p := strings.IndexByte(s, '-'); p >= 0 {

	golang.org/x/text/language
		parse.go#L224: 	if i := strings.IndexByte(s, c); i >= 0 {

	golang.org/x/tools/go/packages
		golist.go#L566: 		if i := strings.IndexByte(pkg.ID, ' '); i >= 0 {

	golang.org/x/tools/go/types/objectpath
		objectpath.go#L586: 	if dot := strings.IndexByte(pathstr, opType); dot < 0 {

	google.golang.org/protobuf/internal/encoding/tag
		tag.go#L37: 		i := strings.IndexByte(tag, ',')

	google.golang.org/protobuf/reflect/protoregistry
		registry.go#L303: 	if i := strings.IndexByte(string(*s), '.'); i >= 0 {

	html
		escape.go#L188: 	i := strings.IndexByte(s, '&')
		escape.go#L201: 			i = strings.IndexByte(s[src:], '&')

	net/http
		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, '/')

	net/http/internal/httpcommon
		httpcommon.go#L341: 						p := strings.IndexByte(v, ';')
		httpcommon.go#L590: 	if strings.IndexByte(rp.Authority, '@') != -1 && (rp.Scheme == "http" || rp.Scheme == "https") {

	os/exec
		exec.go#L1261: 		if !nulOK && strings.IndexByte(kv, 0) != -1 {

	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#L275: 		i := strings.IndexByte(env, ',')
		cpu.go#L284: 		i = strings.IndexByte(field, '=')