type golang.org/x/tools/internal/event/keys.Int64

9 uses

	golang.org/x/tools/internal/event/keys (current package)
		keys.go#L199: type Int64 struct {
		keys.go#L205: func NewInt64(name, description string) *Int64 {
		keys.go#L206: 	return &Int64{name: name, description: description}
		keys.go#L209: func (k *Int64) Name() string        { return k.name }
		keys.go#L210: func (k *Int64) Description() string { return k.description }
		keys.go#L212: func (k *Int64) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L217: func (k *Int64) Of(v int64) label.Label { return label.Of64(k, uint64(v)) }
		keys.go#L220: func (k *Int64) Get(lm label.Map) int64 {
		keys.go#L228: func (k *Int64) From(t label.Label) int64 { return int64(t.Unpack64()) }