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

9 uses

	golang.org/x/tools/internal/event/keys (current package)
		keys.go#L167: type Int32 struct {
		keys.go#L173: func NewInt32(name, description string) *Int32 {
		keys.go#L174: 	return &Int32{name: name, description: description}
		keys.go#L177: func (k *Int32) Name() string        { return k.name }
		keys.go#L178: func (k *Int32) Description() string { return k.description }
		keys.go#L180: func (k *Int32) Format(w io.Writer, buf []byte, l label.Label) {
		keys.go#L185: func (k *Int32) Of(v int32) label.Label { return label.Of64(k, uint64(v)) }
		keys.go#L188: func (k *Int32) Get(lm label.Map) int32 {
		keys.go#L196: func (k *Int32) From(t label.Label) int32 { return int32(t.Unpack64()) }