reflect.Value.MethodByName (method)

11 uses

	reflect (current package)
		value.go#L1352: func (v Value) MethodByName(name string) Value {

	cloud.google.com/go/storage
		acl.go#L232: 	vc.MethodByName("Context").Call([]reflect.Value{reflect.ValueOf(ctx)})
		acl.go#L234: 		vc.MethodByName("UserProject").Call([]reflect.Value{reflect.ValueOf(a.userProject)})
		storage.go#L1514: 	m := call.MethodByName(name)

	google.golang.org/protobuf/internal/descfmt
		stringer.go#L44: 			name = reflect.ValueOf(vs).MethodByName("Get").Type().Out(0).Name() + "s"
		stringer.go#L91: 			m := reflect.ValueOf(vs).MethodByName("Get")
		stringer.go#L122: 	rt := rv.MethodByName("ProtoType").Type().In(0)
		stringer.go#L193: 		if rv.MethodByName("GoType").IsValid() {
		stringer.go#L208: 		if m := v.MethodByName(a); m.IsValid() {
		stringer.go#L218: 			rv = rv.MethodByName("Interface").Call(nil)[0]

	text/template
		exec.go#L608: 	if method := ptr.MethodByName(fieldName); method.IsValid() {