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#L178: 		return Index(s, b[:n])
		bytes.go#L364: 		m := Index(s, sep)
		bytes.go#L1156: 			j += Index(s[start:], old)
		bytes.go#L1262: func Index(s, sep []byte) int {
		bytes.go#L1356: 	if i := Index(s, sep); i >= 0 {

	encoding/pem
		pem.go#L142: 			endIndex = bytes.Index(rest, pemEnd)

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

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