func strings.IndexByte
47 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])
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#L323: 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/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
h2_bundle.go#L9623: 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, '/')
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#L249: i := strings.IndexByte(env, ',')
cpu.go#L258: i = strings.IndexByte(field, '=')