func bytes.Index

18 uses

	bytes (current package)
		bytes.go#L67: 		i := Index(s, sep)
		bytes.go#L78: 	return Index(b, subslice) != -1
		bytes.go#L399: 		m := Index(s, sep)
		bytes.go#L1199: 			j += Index(s[start:], old)
		bytes.go#L1305: func Index(s, sep []byte) int {
		bytes.go#L1399: 	if i := Index(s, sep); i >= 0 {
		iter.go#L56: 			i := Index(s, sep)

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

	go/build
		build.go#L1367: 				i := bytes.Index(data, newline)
		build.go#L1376: 				i := bytes.Index(data, starSlash)
		build.go#L1683: 				if i := bytes.Index(line, starSlash); i >= 0 {

	html/template
		transition.go#L193: 	if i := bytes.Index(s, commentEnd); i != -1 {
		transition.go#L235: 		i := bytes.Index(s, specialTagEndPrefix)
		transition.go#L449: 	i := bytes.Index(s, blockCommentEnd)

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

	net/http/httputil
		dump.go#L163: 		if i := bytes.Index(dump, []byte("\r\n\r\n")); i >= 0 {

	os/exec
		exec.go#L418: 			if i := bytes.Index(stack, []byte("\nos/exec.Command(")); i >= 0 {

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