func strings.IndexByte
30 uses
strings (current package)
strings.go#L113: func IndexByte(s string, c byte) int {
strings.go#L124: return IndexByte(s, byte(r))
strings.go#L1030: return IndexByte(s, substr[0])
strings.go#L1052: o := IndexByte(s[i+1:t], c0)
strings.go#L1081: o := IndexByte(s[i+1:t], c0)
encoding/asn1
common.go#L99: i := strings.IndexByte(str, ',')
golang.org/x/sys/unix
syscall.go#L33: if strings.IndexByte(s, 0) != -1 {
html
escape.go#L189: i := strings.IndexByte(s, '&')
escape.go#L201: i = strings.IndexByte(s[src:], '&')
mime
encodedword.go#L207: split := strings.IndexByte(word, '?')
mediatype.go#L22: if slash := strings.IndexByte(t, '/'); slash == -1 {
net/http
cookie.go#L373: if strings.IndexByte(v, ' ') >= 0 || strings.IndexByte(v, ',') >= 0 {
h2_bundle.go#L8068: p := strings.IndexByte(v, ';')
request.go#L958: s := strings.IndexByte(cs, ':')
response.go#L168: if i := strings.IndexByte(line, ' '); i == -1 {
response.go#L175: if i := strings.IndexByte(resp.Status, ' '); i != -1 {
server.go#L2298: if strings.IndexByte(h, ':') == -1 {
net/url
url.go#L459: i := strings.IndexByte(s, sep)
url.go#L843: if i := strings.IndexByte(path, ':'); i > -1 && strings.IndexByte(path[:i], '/') == -1 {
url.go#L1013: i = strings.IndexByte(remaining, '/')
runtime/debug
mod.go#L73: i := strings.IndexByte(data, '\n')
src.elv.sh/pkg/diag
context.go#L147: i := strings.IndexByte(s, '\n')
src.elv.sh/pkg/edit
ns_helper.go#L24: if i := strings.IndexByte(s, '='); i > 0 {
src.elv.sh/pkg/eval
builtin_special.go#L114: i := strings.IndexByte(name, ':')
var_parse.go#L22: colon := strings.IndexByte(qname, ':')
src.elv.sh/pkg/fsutil
claim.go#L37: asterisk := strings.IndexByte(pattern, '*')
vendor/golang.org/x/net/http/httpguts
httplex.go#L141: if comma := strings.IndexByte(v, ','); comma != -1 {
vendor/golang.org/x/net/idna
idna10.0.0.go#L535: p := strings.IndexByte(l.orig[l.curStart:], '.')