reflect.Value.Call (method)

26 uses

	reflect (current package)
		type.go#L2510: 							return recv.Field(ifield).Method(imethod).Call(args)
		type.go#L2518: 							return recv.Field(ifield).Method(imethod).Call(args)
		type.go#L2527: 							return recv.Field(ifield).Method(imethod).Call(args)
		type.go#L2535: 							return recv.Field(ifield).Method(imethod).Call(args)
		value.go#L336: func (v Value) Call(in []Value) []Value {

	github.com/go-pg/pg/v10/orm
		field.go#L141: 	return strct.Method(m.Index).Call(nil)[0]
		model_func.go#L83: 	out := m.fnv.Call(m.fnIn)

	github.com/golang/mock/gomock
		call.go#L132: 		vRets := v.Call(vArgs)
		call.go#L167: 		v.Call(vArgs)

	github.com/golang/protobuf/proto
		properties.go#L264: 			oneofWrappers = fn.Func.Call([]reflect.Value{reflect.Zero(fn.Type.In(0))})[3].Interface().([]interface{})
		properties.go#L267: 			oneofWrappers = fn.Func.Call([]reflect.Value{reflect.Zero(fn.Type.In(0))})[0].Interface().([]interface{})

	github.com/google/go-cmp/cmp
		compare.go#L324: 		return f.Call([]reflect.Value{v})[0]
		compare.go#L333: 	want := f.Call([]reflect.Value{v})[0]
		compare.go#L347: 		return f.Call([]reflect.Value{x, y})[0].Bool()
		compare.go#L357: 	want := f.Call([]reflect.Value{x, y})[0].Bool()
		compare.go#L370: 	ret = f.Call(vs)[0]

	google.golang.org/protobuf/internal/descfmt
		stringer.go#L94: 			v := m.Call([]reflect.Value{reflect.ValueOf(i)})[0].Interface()
		stringer.go#L211: 			rv = m.Call(nil)[0]
		stringer.go#L220: 			rv = rv.MethodByName("Interface").Call(nil)[0]

	google.golang.org/protobuf/internal/impl
		legacy_message.go#L211: 			for _, v := range fn.Func.Call([]reflect.Value{reflect.Zero(fn.Type.In(0))}) {
		legacy_message.go#L223: 		vs := fn.Func.Call([]reflect.Value{reflect.Zero(fn.Type.In(0))})[0]
		message.go#L197: 			for _, v := range fn.Func.Call([]reflect.Value{reflect.Zero(fn.Type.In(0))}) {

	net/http/httptrace
		trace.go#L203: 			tfCopy.Call(args)
		trace.go#L204: 			return of.Call(args)

	testing
		fuzz.go#L337: 			fn.Call(args)

	text/template
		funcs.go#L368: 	ret := fun.Call(args)