func bytes.Index

10 uses

	bytes (current package)
		bytes.go#L66: 		i := Index(s, sep)
		bytes.go#L77: 	return Index(b, subslice) != -1
		bytes.go#L156: 		return Index(s, b[:n])
		bytes.go#L342: 		m := Index(s, sep)
		bytes.go#L1144: 			j += Index(s[start:], old)
		bytes.go#L1250: func Index(s, sep []byte) int {
		bytes.go#L1344: 	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#L452: 	return bytes.Index(i.str[pos:], re.prefixBytes)