Home
last modified time | relevance | path

Searched refs:makeDataPoint (Results 1 – 6 of 6) sorted by relevance

/platform_testing/libraries/motion/src/platform/test/motion/golden/
DDataPointTypes.kt21 fun Float.asDataPoint() = DataPointTypes.float.makeDataPoint(this) in <lambda>()
23 fun Boolean.asDataPoint() = DataPointTypes.boolean.makeDataPoint(this) in <lambda>()
25 fun Int.asDataPoint() = DataPointTypes.int.makeDataPoint(this) in <lambda>()
27 fun String.asDataPoint() = DataPointTypes.string.makeDataPoint(this) in <lambda>()
DDataPointType.kt36 fun makeDataPoint(nativeValue: T?): DataPoint<T> { in makeDataPoint() method
46 makeDataPoint(jsonToValue(jsonValue)) in fromJson()
/platform_testing/libraries/motion/compose/src/platform/test/motion/compose/
DDataPointTypes.kt32 fun Dp.asDataPoint() = DataPointTypes.dp.makeDataPoint(this) in Dp()
34 fun IntSize.asDataPoint() = DataPointTypes.intSize.makeDataPoint(this) in Dp()
36 fun Offset.asDataPoint() = DataPointTypes.offset.makeDataPoint(this) in Dp()
38 fun DpSize.asDataPoint() = DataPointTypes.dpSize.makeDataPoint(this) in Dp()
40 fun DpOffset.asDataPoint() = DataPointTypes.dpOffset.makeDataPoint(this) in Dp()
DMotionTestValues.kt58 FeatureCapture(name) { dataPointType.makeDataPoint(it.get(motionTestValueKey)) }, in hasMotionTestValue()
/platform_testing/libraries/motion/src/platform/test/motion/view/
DDataPointTypes.kt25 fun Rect.asDataPoint() = DataPointTypes.rect.makeDataPoint(this) in <lambda>()
27 fun Point.asDataPoint() = DataPointTypes.point.makeDataPoint(this) in <lambda>()
/platform_testing/libraries/motion/tests/src/platform/test/motion/golden/
DDataPointTypeTest.kt48 assertThat(subject.makeDataPoint(null)).isEqualTo(nullValue<Native>()) in <lambda>()
54 val dataPoint = subject.makeDataPoint(nativeValue) in <lambda>()