Home
last modified time | relevance | path

Searched refs:DpSize (Results 1 – 4 of 4) sorted by relevance

/platform_testing/libraries/motion/compose/src/platform/test/motion/compose/
DDataPointTypes.kt24 import androidx.compose.ui.unit.DpSize
38 fun DpSize.asDataPoint() = DataPointTypes.dpSize.makeDataPoint(this) in Dp() method
74 val dpSize: DataPointType<DpSize> = in Dp()
79 DpSize(getDouble("width").dp, getDouble("height").dp) in Dp()
DComposeFeatureCaptures.kt23 import androidx.compose.ui.unit.DpSize
37 FeatureCapture<SemanticsNode, DpSize>("size") { in <lambda>()
/platform_testing/libraries/motion/compose/tests/src/platform/test/motion/compose/
DDataPointTypesTest.kt21 import androidx.compose.ui.unit.DpSize
56 .convertsJsonObject(DpSize(width = 1.dp, height = 2.dp), """{"width":1, "height": 2}""") in dpSize_jsonConversion()
DComposeFeatureCapturesTest.kt28 import androidx.compose.ui.unit.DpSize
60 .hasNativeValue(DpSize(10.dp, 20.dp)) in dpSize_capturesDataPoint()