func bytes.Index

10 uses

	bytes (current package)
		bytes.go#L65: 		i := Index(s, sep)
		bytes.go#L76: 	return Index(b, subslice) != -1
		bytes.go#L173: 		return Index(s, b[:n])
		bytes.go#L356: 		m := Index(s, sep)
		bytes.go#L1015: 			j += Index(s[start:], old)
		bytes.go#L1091: func Index(s, sep []byte) int {

	encoding/pem
		pem.go#L92: 	} else if i := bytes.Index(data, pemStart); i >= 0 {
		pem.go#L138: 		endIndex = bytes.Index(rest, pemEnd)

	mime/multipart
		multipart.go#L229: 	if i := bytes.Index(buf, nlDashBoundary); i >= 0 {

	regexp
		regexp.go#L450: 	return bytes.Index(i.str[pos:], re.prefixBytes)