type internal/abi.Method

15 uses

	internal/abi (current package)
		type.go#L213: type Method struct {
		type.go#L232: func (t *UncommonType) Methods() []Method {
		type.go#L236: 	return (*[1 << 16]Method)(addChecked(unsafe.Pointer(t), uintptr(t.Moff), "t.mcount > 0"))[:t.Mcount:t.Mcount]
		type.go#L239: func (t *UncommonType) ExportedMethods() []Method {
		type.go#L243: 	return (*[1 << 16]Method)(addChecked(unsafe.Pointer(t), uintptr(t.Moff), "t.xcount > 0"))[:t.Xcount:t.Xcount]
		type.go#L448: func (t *Type) ExportedMethods() []Method {

	internal/reflectlite
		type.go#L255: func (t rtype) exportedMethods() []abi.Method {

	reflect
		type.go#L600: func (t *rtype) exportedMethods() []abi.Method {
		type.go#L2354: 		methods    []abi.Method
		type.go#L2414: 					methods = append(methods, abi.Method{
		type.go#L2438: 						methods = append(methods, abi.Method{
		type.go#L2454: 						methods = append(methods, abi.Method{
		type.go#L2478: 						methods = append(methods, abi.Method{
		type.go#L2561: 		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]