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

9 uses

	golang.org/x/tools/internal/event/keys (current package)
		keys.go#L135: type Int16 struct {
		keys.go#L141: func NewInt16(name, description string) *Int16 {
		keys.go#L142: 	return &Int16{name: name, description: description}
		keys.go#L145: func (k *Int16) Name() string        { return k.name }
		keys.go#L146: func (k *Int16) Description() string { return k.description }
		keys.go#L148: func (k *Int16) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L153: func (k *Int16) Of(v int16) label.Label { return label.Of64(k, uint64(v)) }
		keys.go#L156: func (k *Int16) Get(lm label.Map) int16 {
		keys.go#L164: func (k *Int16) From(t label.Label) int16 { return int16(t.Unpack64()) }