type internal/abi.Method
15 uses
internal/abi (current package)
type.go#L218: type Method struct {
type.go#L237: func (t *UncommonType) Methods() []Method {
type.go#L241: return (*[1 << 16]Method)(addChecked(unsafe.Pointer(t), uintptr(t.Moff), "t.mcount > 0"))[:t.Mcount:t.Mcount]
type.go#L244: func (t *UncommonType) ExportedMethods() []Method {
type.go#L248: return (*[1 << 16]Method)(addChecked(unsafe.Pointer(t), uintptr(t.Moff), "t.xcount > 0"))[:t.Xcount:t.Xcount]
type.go#L453: func (t *Type) ExportedMethods() []Method {
internal/reflectlite
type.go#L255: func (t rtype) exportedMethods() []abi.Method {
reflect
type.go#L628: func (t *rtype) exportedMethods() []abi.Method {
type.go#L2280: methods []abi.Method
type.go#L2335: methods = append(methods, abi.Method{
type.go#L2359: methods = append(methods, abi.Method{
type.go#L2375: methods = append(methods, abi.Method{
type.go#L2399: methods = append(methods, abi.Method{
type.go#L2482: 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]