reflect.Type.PkgPath (method)

17 uses

	reflect (current package)
		iter.go#L15: 		convert := t.PkgPath() != ""
		type.go#L90: 	PkgPath() string

	github.com/google/go-cmp/cmp
		options.go#L234: 			name = fmt.Sprintf("%q.%v", t.PkgPath(), t.Name()) // e.g., "path/to/package".MyType
		options.go#L238: 					m.Type.Out(0).PkgPath() == "google.golang.org/protobuf/reflect/protoreflect" &&

	github.com/google/go-cmp/cmp/internal/value
		name.go#L32: 		if qualified && t.PkgPath() != "" {
		name.go#L34: 			b = append(b, t.PkgPath()...)
		sort.go#L95: 		if tx.PkgPath() != ty.PkgPath() {
		sort.go#L96: 			return tx.PkgPath() < ty.PkgPath()

	google.golang.org/genproto/googleapis/rpc/status
		status.pb.go#L188: 			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),

	google.golang.org/grpc/binarylog/grpc_binarylog_v1
		binarylog.pb.go#L989: 			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),

	google.golang.org/grpc/health/grpc_health_v1
		health.pb.go#L335: 			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),

	google.golang.org/protobuf/internal/impl
		legacy_enum.go#L206: 	prefix := strings.Map(sanitize, t.PkgPath())

	google.golang.org/protobuf/types/known/anypb
		any.pb.go#L455: 			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),

	google.golang.org/protobuf/types/known/durationpb
		duration.pb.go#L332: 			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),

	google.golang.org/protobuf/types/known/timestamppb
		timestamp.pb.go#L341: 			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),