func internal/bytealg.IndexByteString

41 uses

	internal/bytealg (current package)
		indexbyte_native.go#L13: func IndexByteString(s string, c byte) int

	bytes
		bytes.go#L202: 		if bytealg.IndexByteString(chars, s[0]) >= 0 {
		bytes.go#L228: 			if bytealg.IndexByteString(chars, s[i]) >= 0 {
		bytes.go#L289: 		if bytealg.IndexByteString(chars, s[0]) >= 0 {
		bytes.go#L311: 			if bytealg.IndexByteString(chars, s[i-1]) >= 0 {

	net
		conf.go#L245: 		if bytealg.IndexByteString(hostname, '\\') != -1 || bytealg.IndexByteString(hostname, '%') != -1 {
		conf.go#L498: 	if i := bytealg.IndexByteString(goDebug, '+'); i != -1 {
		dnsclient.go#L143: 	if bytealg.IndexByteString(s, '.') != -1 && s[len(s)-1] != '.' {
		dnsconfig_unix.go#L152: 	if i := bytealg.IndexByteString(hn, '.'); i >= 0 && i < len(hn)-1 {
		hosts.go#L78: 			if i := bytealg.IndexByteString(line, '#'); i >= 0 {
		ip.go#L518: 	i := bytealg.IndexByteString(s, '/')
		ipsock.go#L182: 		end := bytealg.IndexByteString(hostport, ']')
		ipsock.go#L204: 		if bytealg.IndexByteString(host, ':') >= 0 {
		ipsock.go#L208: 	if bytealg.IndexByteString(hostport[j:], '[') >= 0 {
		ipsock.go#L211: 	if bytealg.IndexByteString(hostport[k:], ']') >= 0 {
		ipsock.go#L238: 	if bytealg.IndexByteString(host, ':') >= 0 {
		lookup_unix.go#L29: 		if i := bytealg.IndexByteString(line, '#'); i >= 0 {
		nss.go#L172: 		colon := bytealg.IndexByteString(line, ':')
		nss.go#L184: 			sp := bytealg.IndexByteString(srcs, ' ')
		nss.go#L196: 				bclose := bytealg.IndexByteString(srcs, ']')
		nss.go#L232: 		eq := bytealg.IndexByteString(f, '=')
		parse.go#L95: 		if bytealg.IndexByteString(t, s[i]) >= 0 {
		parse.go#L108: 		if bytealg.IndexByteString(t, s[i]) >= 0 {
		parse.go#L265: 	if i := bytealg.IndexByteString(line, '#'); i != -1 {
		parse.go#L276: 		sp := bytealg.IndexByteString(x, ' ')
		port_unix.go#L27: 		if i := bytealg.IndexByteString(line, '#'); i >= 0 {

	net/netip
		netip.go#L204: 	i := bytealg.IndexByteString(s, '%')
		netip.go#L1132: 	if bytealg.IndexByteString(host, ':') >= 0 {

	path
		match.go#L45: 			return bytealg.IndexByteString(name, '/') < 0, nil

	runtime
		error.go#L311: 	i := bytealg.IndexByteString(name, '(')
		error.go#L320: 	i = bytealg.IndexByteString(name, ')')
		runtime1.go#L445: 			i := bytealg.IndexByteString(p, ',')
		runtime1.go#L463: 		i := bytealg.IndexByteString(field, '=')
		string.go#L541: 		if i := bytealg.IndexByteString(t, 0); i != -1 {
		traceback.go#L763: 	i := bytealg.IndexByteString(name, '[')
		traceback.go#L1155: 	return bytealg.IndexByteString(name, '.') >= 0 && (!hasPrefix(name, "runtime.") || isExportedRuntime(name))

	strconv
		bytealg.go#L14: 	return bytealg.IndexByteString(s, c)

	strings
		strings.go#L118: 	return bytealg.IndexByteString(s, c)

	syscall
		exec_unix.go#L87: 		if bytealg.IndexByteString(s, 0) != -1 {
		syscall.go#L49: 	if bytealg.IndexByteString(s, 0) != -1 {