reflect.Value.Call (method)

30 uses

	reflect (current package)
		type.go#L2447: 							return recv.Field(ifield).Method(imethod).Call(args)
		type.go#L2455: 							return recv.Field(ifield).Method(imethod).Call(args)
		type.go#L2464: 							return recv.Field(ifield).Method(imethod).Call(args)
		type.go#L2472: 							return recv.Field(ifield).Method(imethod).Call(args)
		value.go#L334: func (v Value) Call(in []Value) []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#L1518: 	m.Call([]reflect.Value{reflect.ValueOf(value)})

	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#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]

	github.com/google/go-cmp/cmp/cmpopts
		ignore.go#L169: 		if vx.IsValid() && vf.Call([]reflect.Value{vx})[0].Bool() {
		ignore.go#L172: 		if vy.IsValid() && vf.Call([]reflect.Value{vy})[0].Bool() {
		ignore.go#L198: 		if vx.IsValid() && vf.Call([]reflect.Value{k, vx})[0].Bool() {
		ignore.go#L201: 		if vy.IsValid() && vf.Call([]reflect.Value{k, vy})[0].Bool() {
		sort.go#L82: 	return ss.fnc.Call([]reflect.Value{vx, vy})[0].Bool()
		sort.go#L146: 	return ms.fnc.Call([]reflect.Value{vx, vy})[0].Bool()

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

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

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