func strconv.Itoa
77 uses
strconv (current package)
atoi.go#L45: return &NumError{fn, str, errors.New("invalid base " + Itoa(base))}
atoi.go#L49: return &NumError{fn, str, errors.New("invalid bit size " + Itoa(bitSize))}
itoa.go#L34: func Itoa(i int) string {
crypto
crypto.go#L64: return "unknown hash value " + strconv.Itoa(int(h))
crypto.go#L134: panic("crypto: requested hash function #" + strconv.Itoa(int(h)) + " is unavailable")
crypto/aes
cipher.go#L25: return "crypto/aes: invalid key size " + strconv.Itoa(int(k))
crypto/des
cipher.go#L20: return "crypto/des: invalid key size " + strconv.Itoa(int(k))
crypto/ed25519
ed25519.go#L125: panic("ed25519: bad seed length: " + strconv.Itoa(l))
ed25519.go#L150: panic("ed25519: bad private key length: " + strconv.Itoa(l))
ed25519.go#L185: panic("ed25519: bad public key length: " + strconv.Itoa(l))
crypto/rc4
rc4.go#L26: return "crypto/rc4: invalid key size " + strconv.Itoa(int(k))
crypto/tls
alert.go#L94: return "tls: alert(" + strconv.Itoa(int(e)) + ")"
crypto/x509
parser.go#L421: return errors.New("x509: cannot parse IP address of length " + strconv.Itoa(len(data)))
x509.go#L218: return strconv.Itoa(int(algo))
x509.go#L242: return strconv.Itoa(int(algo))
database/sql
sql.go#L156: return "IsolationLevel(" + strconv.Itoa(int(i)) + ")"
encoding/asn1
asn1.go#L245: s += strconv.Itoa(v)
encoding/xml
marshal.go#L358: if id := prefix + "_" + strconv.Itoa(p.seq); p.attrNS[id] == "" {
xml.go#L35: return "XML syntax error on line " + strconv.Itoa(e.Line) + ": " + e.Msg
flag
flag.go#L157: func (i *intValue) String() string { return strconv.Itoa(int(*i)) }
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream
debug.go#L54: Length: json.Number(strconv.Itoa(int(d.Length))),
debug.go#L55: HeadersLen: json.Number(strconv.Itoa(int(d.HeadersLen))),
debug.go#L56: PreludeCRC: json.Number(strconv.Itoa(int(d.PreludeCRC))),
debug.go#L59: CRC: json.Number(strconv.Itoa(int(d.CRC))),
github.com/aws/aws-sdk-go-v2/aws/retry
middleware.go#L260: parts = append(parts, "attempt="+strconv.Itoa(retryMetadata.AttemptNum))
middleware.go#L262: parts = append(parts, "max="+strconv.Itoa(retryMetadata.MaxAttempts))
github.com/golang/mock/gomock
call.go#L344: c.origin, strconv.Itoa(i), formatGottenArg(m, args[i]), m)
call.go#L388: c.origin, strconv.Itoa(i), formatGottenArg(m, args[i:]), c.args[i])
github.com/golang/protobuf/jsonpb
encode.go#L528: w.write(strconv.Itoa(int(v.Enum())))
github.com/golang/protobuf/proto
deprecated.go#L62: return strconv.Itoa(int(v))
properties.go#L101: s += "," + strconv.Itoa(p.Tag)
go.pact.im/x/goupdate
packages.go#L22: log("loaded packages: " + strconv.Itoa(len(pkgs)))
upgrade.go#L12: log("iteration " + strconv.Itoa(i))
upgrade.go#L44: log("found upgrades: " + strconv.Itoa(len(upgrades)))
go.pact.im/x/httpdebug
httpdebug.go#L45: h.Set("Content-Length", strconv.Itoa(len(modinfo)))
httpdebug.go#L53: h.Set("Content-Length", strconv.Itoa(len(debugPage)))
go.pact.im/x/zapjournal/tests
journalctl.go#L35: "_PID="+strconv.Itoa(pid),
go/build
build.go#L327: c.ReleaseTags = append(c.ReleaseTags, "go1."+strconv.Itoa(i))
go/token
token.go#L249: s = "token(" + strconv.Itoa(int(tok)) + ")"
go/types
context.go#L51: h.string(strconv.Itoa(ctxt.getID(orig)))
typestring.go#L286: w.string(strconv.Itoa(w.ctxt.getID(t)))
golang.org/x/net/http2
gotrack.go#L111: err = errors.New("invalid base " + strconv.Itoa(base))
http2.go#L205: return strconv.Itoa(code)
server.go#L2570: clen = strconv.Itoa(len(p))
server.go#L3234: codeStr = strconv.Itoa(int(code))
golang.org/x/sys/unix
syscall_linux.go#L237: return Utimes("/proc/self/fd/"+strconv.Itoa(fd), tv)
golang.org/x/tools/internal/gcimporter
iexport.go#L875: name = blankMarker + strconv.Itoa(tparam.Index())
google.golang.org/grpc/internal/resolver/dns
dns_resolver.go#L273: addr := ip + ":" + strconv.Itoa(int(s.Port))
google.golang.org/grpc/internal/transport
controlbuf.go#L780: {Name: ":status", Value: strconv.Itoa(int(eas.httpStatus))},
controlbuf.go#L782: {Name: "grpc-status", Value: strconv.Itoa(int(eas.status.Code()))},
http2_client.go#L534: headerFields = append(headerFields, hpack.HeaderField{Name: "grpc-previous-rpc-attempts", Value: strconv.Itoa(callHdr.PreviousAttempts)})
http2_server.go#L1046: headerFields = append(headerFields, hpack.HeaderField{Name: "grpc-status", Value: strconv.Itoa(int(st.Code()))})
google.golang.org/protobuf/internal/encoding/tag
tag.go#L161: tag = append(tag, strconv.Itoa(int(fd.Number())))
google.golang.org/protobuf/internal/impl
api_export.go#L79: return strconv.Itoa(int(n))
net/http
h2_bundle.go#L3104: err = errors.New("invalid base " + strconv.Itoa(base))
h2_bundle.go#L3413: return strconv.Itoa(code)
h2_bundle.go#L6169: clen = strconv.Itoa(len(p))
h2_bundle.go#L6747: codeStr = strconv.Itoa(int(code))
response.go#L249: text = "status code " + strconv.Itoa(r.StatusCode)
response.go#L254: text = strings.TrimPrefix(text, strconv.Itoa(r.StatusCode)+" ")
socks_bundle.go#L78: return nil, errors.New("unexpected protocol version " + strconv.Itoa(int(b[0])))
socks_bundle.go#L119: return nil, errors.New("unexpected protocol version " + strconv.Itoa(int(b[0])))
socks_bundle.go#L142: return nil, errors.New("unknown address type " + strconv.Itoa(int(b[3])))
socks_bundle.go#L186: return "socks " + strconv.Itoa(int(cmd))
socks_bundle.go#L217: return "unknown code: " + strconv.Itoa(int(code))
socks_bundle.go#L253: port := strconv.Itoa(a.Port)
socks_bundle.go#L472: return errors.New("unsupported authentication method " + strconv.Itoa(int(auth)))
reflect
type.go#L638: return "kind" + strconv.Itoa(int(k))
type.go#L1099: return "ChanDir" + strconv.Itoa(int(d))
type.go#L2451: panic("reflect.StructOf: field " + strconv.Itoa(i) + " has no name")
type.go#L2454: panic("reflect.StructOf: field " + strconv.Itoa(i) + " has invalid name")
type.go#L2457: panic("reflect.StructOf: field " + strconv.Itoa(i) + " has no type")
type.go#L2908: s := "[" + strconv.Itoa(length) + "]" + typ.String()
regexp/syntax
prog.go#L297: pc := strconv.Itoa(j)
regexp.go#L119: b.WriteString("<invalid op" + strconv.Itoa(int(re.Op)) + ">")
regexp.go#L214: b.WriteString(strconv.Itoa(re.Min))
regexp.go#L218: b.WriteString(strconv.Itoa(re.Max))