Home
last modified time | relevance | path

Searched refs:linePath (Results 1 – 2 of 2) sorted by relevance

/compose/ui/ui-graphics/src/commonTest/kotlin/androidx/compose/ui/graphics/vector/
DPathParserTest.kt32 val linePath = in negativeExponent() constant
42 parser.parsePathString("H1e-5").toPath(linePath) in negativeExponent()
44 assertEquals(1, linePath.lineToPoints.size) in negativeExponent()
45 assertEquals(1e-5f, linePath.lineToPoints[0].x) in negativeExponent()
50 val linePath = in dotDot() constant
60 parser.parsePathString("m0 0l2..5").toPath(linePath) in dotDot()
62 assertEquals(1, linePath.lineToPoints.size) in dotDot()
63 assertEquals(2.0f, linePath.lineToPoints[0].x) in dotDot()
64 assertEquals(0.5f, linePath.lineToPoints[0].y) in dotDot()
69 val linePath = in relativeMoveToBecomesRelativeLineTo() constant
[all …]
/compose/material3/material3/src/commonMain/kotlin/androidx/compose/material3/
DTextField.kt1639 val linePath = in <lambda>() constant
1650 val clippedLine = linePath and textFieldShapePath in <lambda>()