reflect.Value.Call (method)

20 uses

	reflect (current package)
		iter.go#L44: 			v.Call([]Value{rf})
		iter.go#L130: 			v.Call([]Value{rf})
		value.go#L365: func (v Value) Call(in []Value) []Value {

	github.com/google/go-cmp/cmp
		compare.go#L326: 		return f.Call([]reflect.Value{v})[0]
		compare.go#L335: 	want := f.Call([]reflect.Value{v})[0]
		compare.go#L349: 		return f.Call([]reflect.Value{x, y})[0].Bool()
		compare.go#L359: 	want := f.Call([]reflect.Value{x, y})[0].Bool()
		compare.go#L372: 	ret = f.Call(vs)[0]

	go.uber.org/mock/gomock
		call.go#L140: 		vRets := v.Call(vArgs)
		call.go#L181: 		v.Call(vArgs)

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

	google.golang.org/protobuf/internal/impl
		legacy_message.go#L218: 		for _, v := range fn.Func.Call([]reflect.Value{reflect.Zero(fn.Type.In(0))}) {
		legacy_message.go#L229: 		vs := fn.Func.Call([]reflect.Value{reflect.Zero(fn.Type.In(0))})[0]
		message.go#L205: 		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#L340: 			fn.Call(args)

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