type internal/abi.Method
15 uses
internal/abi (current package)
type.go#L224: type Method struct {
type.go#L243: func (t *UncommonType) Methods() []Method {
type.go#L247: return (*[1 << 16]Method)(addChecked(unsafe.Pointer(t), uintptr(t.Moff), "t.mcount > 0"))[:t.Mcount:t.Mcount]
type.go#L250: func (t *UncommonType) ExportedMethods() []Method {
type.go#L254: return (*[1 << 16]Method)(addChecked(unsafe.Pointer(t), uintptr(t.Moff), "t.xcount > 0"))[:t.Xcount:t.Xcount]
type.go#L459: func (t *Type) ExportedMethods() []Method {
internal/reflectlite
type.go#L255: func (t rtype) exportedMethods() []abi.Method {
reflect
type.go#L596: func (t *rtype) exportedMethods() []abi.Method {
type.go#L2191: methods []abi.Method
type.go#L2246: methods = append(methods, abi.Method{
type.go#L2270: methods = append(methods, abi.Method{
type.go#L2286: methods = append(methods, abi.Method{
type.go#L2310: methods = append(methods, abi.Method{
type.go#L2393: copy(tt.Elem().Field(2).Slice(0, len(methods)).Interface().([]abi.Method), methods)
runtime
iface.go#L215: xmhdr := (*[1 << 16]abi.Method)(add(unsafe.Pointer(x), uintptr(x.Moff)))[:nt:nt]