type golang.org/x/tools/internal/pkgbits.Decoder

29 uses

	golang.org/x/tools/internal/pkgbits (current package)
		decoder.go#L166: func (pr *PkgDecoder) NewDecoder(k RelocKind, idx Index, marker SyncMarker) Decoder {
		decoder.go#L176: func (pr *PkgDecoder) TempDecoder(k RelocKind, idx Index, marker SyncMarker) Decoder {
		decoder.go#L182: func (pr *PkgDecoder) RetireDecoder(d *Decoder) {
		decoder.go#L190: func (pr *PkgDecoder) NewDecoderRaw(k RelocKind, idx Index) Decoder {
		decoder.go#L191: 	r := Decoder{
		decoder.go#L208: func (pr *PkgDecoder) TempDecoderRaw(k RelocKind, idx Index) Decoder {
		decoder.go#L209: 	r := Decoder{
		decoder.go#L234: type Decoder struct {
		decoder.go#L244: func (r *Decoder) checkErr(err error) {
		decoder.go#L250: func (r *Decoder) rawUvarint() uint64 {
		decoder.go#L284: func (r *Decoder) rawVarint() int64 {
		decoder.go#L295: func (r *Decoder) rawReloc(k RelocKind, idx int) Index {
		decoder.go#L305: func (r *Decoder) Sync(mWant SyncMarker) {
		decoder.go#L361: func (r *Decoder) Bool() bool {
		decoder.go#L370: func (r *Decoder) Int64() int64 {
		decoder.go#L376: func (r *Decoder) Uint64() uint64 {
		decoder.go#L382: func (r *Decoder) Len() int { x := r.Uint64(); v := int(x); assert(uint64(v) == x); return v }
		decoder.go#L385: func (r *Decoder) Int() int { x := r.Int64(); v := int(x); assert(int64(v) == x); return v }
		decoder.go#L388: func (r *Decoder) Uint() uint { x := r.Uint64(); v := uint(x); assert(uint64(v) == x); return v }
		decoder.go#L397: func (r *Decoder) Code(mark SyncMarker) int {
		decoder.go#L404: func (r *Decoder) Reloc(k RelocKind) Index {
		decoder.go#L411: func (r *Decoder) String() string {
		decoder.go#L418: func (r *Decoder) Strings() []string {
		decoder.go#L428: func (r *Decoder) Value() constant.Value {
		decoder.go#L438: func (r *Decoder) scalar() constant.Value {
		decoder.go#L460: func (r *Decoder) bigInt() *big.Int {
		decoder.go#L468: func (r *Decoder) bigFloat() *big.Float {
		decoder.go#L519: func (w *Decoder) Version() Version { return w.common.version }

	golang.org/x/tools/internal/gcimporter
		ureader_yes.go#L153: 	pkgbits.Decoder