func internal/bytealg.IndexByteString
31 uses
internal/bytealg (current package)
indexbyte_native.go#L13: func IndexByteString(s string, c byte) int
bytes
bytes.go#L197: if bytealg.IndexByteString(chars, s[0]) >= 0 {
bytes.go#L223: if bytealg.IndexByteString(chars, s[i]) >= 0 {
bytes.go#L284: if bytealg.IndexByteString(chars, s[0]) >= 0 {
bytes.go#L306: if bytealg.IndexByteString(chars, s[i-1]) >= 0 {
net
conf.go#L136: if bytealg.IndexByteString(hostname, '\\') != -1 || bytealg.IndexByteString(hostname, '%') != -1 {
conf.go#L300: if i := bytealg.IndexByteString(goDebug, '+'); i != -1 {
dnsconfig_unix.go#L176: if i := bytealg.IndexByteString(hn, '.'); i >= 0 && i < len(hn)-1 {
hosts.go#L72: if i := bytealg.IndexByteString(line, '#'); i >= 0 {
ip.go#L713: i := bytealg.IndexByteString(s, '/')
ipsock.go#L174: end := bytealg.IndexByteString(hostport, ']')
ipsock.go#L196: if bytealg.IndexByteString(host, ':') >= 0 {
ipsock.go#L200: if bytealg.IndexByteString(hostport[j:], '[') >= 0 {
ipsock.go#L203: if bytealg.IndexByteString(hostport[k:], ']') >= 0 {
ipsock.go#L230: if bytealg.IndexByteString(host, ':') >= 0 {
lookup_unix.go#L31: if i := bytealg.IndexByteString(line, '#'); i >= 0 {
parse.go#L87: if bytealg.IndexByteString(t, s[i]) >= 0 {
parse.go#L100: if bytealg.IndexByteString(t, s[i]) >= 0 {
port_unix.go#L27: if i := bytealg.IndexByteString(line, '#'); i >= 0 {
path
match.go#L46: return bytealg.IndexByteString(name, '/') < 0, nil
runtime
error.go#L308: i := bytealg.IndexByteString(name, '(')
error.go#L317: i = bytealg.IndexByteString(name, ')')
proc.go#L6073: i := bytealg.IndexByteString(x, ',')
runtime1.go#L369: i := bytealg.IndexByteString(p, ',')
runtime1.go#L375: i = bytealg.IndexByteString(field, '=')
string.go#L438: if i := bytealg.IndexByteString(t, 0); i != -1 {
traceback.go#L850: return bytealg.IndexByteString(name, '.') >= 0 && (!hasPrefix(name, "runtime.") || isExportedRuntime(name))
strconv
quote.go#L441: return bytealg.IndexByteString(s, c) != -1
strings
strings.go#L114: return bytealg.IndexByteString(s, c)
syscall
exec_unix.go#L88: if bytealg.IndexByteString(s, 0) != -1 {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |