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

9 uses

	golang.org/x/tools/internal/event/keys (current package)
		keys.go#L103: type Int8 struct {
		keys.go#L109: func NewInt8(name, description string) *Int8 {
		keys.go#L110: 	return &Int8{name: name, description: description}
		keys.go#L113: func (k *Int8) Name() string        { return k.name }
		keys.go#L114: func (k *Int8) Description() string { return k.description }
		keys.go#L116: func (k *Int8) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L121: func (k *Int8) Of(v int8) label.Label { return label.Of64(k, uint64(v)) }
		keys.go#L124: func (k *Int8) Get(lm label.Map) int8 {
		keys.go#L132: func (k *Int8) From(t label.Label) int8 { return int8(t.Unpack64()) }