Home
last modified time | relevance | path

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

/compose/foundation/foundation/integration-tests/foundation-demos/src/main/java/androidx/compose/foundation/demos/
DLazyGridDragAndDropDemo.kt147 offset.x.toInt() in item.offset.x..item.offsetEnd.x && in onDragStart()
148 offset.y.toInt() in item.offset.y..item.offsetEnd.y in onDragStart()
187 middleOffset.x.toInt() in item.offset.x..item.offsetEnd.x && in onDrag()
188 middleOffset.y.toInt() in item.offset.y..item.offsetEnd.y && in onDrag()
218 private val LazyGridItemInfo.offsetEnd: IntOffset constant in androidx.compose.foundation.demos.GridDragDropState
DLazyColumnDragAndDropDemo.kt168 middleOffset.toInt() in item.offset..item.offsetEnd && in onDrag()
198 private val LazyListItemInfo.offsetEnd: Int constant in androidx.compose.foundation.demos.DragDropState
/compose/material/material/src/commonMain/kotlin/androidx/compose/material/
DSlider.kt486 val offsetEnd = rawOffsetEnd.floatValue in RangeSlider() constant
487 val offsetStart = rawOffsetStart.floatValue.coerceIn(minPx, offsetEnd) in RangeSlider()
488 offsetStart..offsetEnd in RangeSlider()
493 val offsetEnd = rawOffsetEnd.floatValue.coerceIn(offsetStart, maxPx) in RangeSlider() constant
494 offsetStart..offsetEnd in RangeSlider()
741 val offsetEnd = widthDp * positionFractionEnd in RangeSliderImpl() constant
771 offsetEnd, in RangeSliderImpl()
/compose/material3/material3/src/commonMain/kotlin/androidx/compose/material3/
DSlider.kt2762 val offsetEnd = rawOffsetEnd in onDrag() constant
2763 var offsetStart = rawOffsetStart.coerceIn(minPx, offsetEnd) in onDrag()
2765 SliderRange(offsetStart, offsetEnd) in onDrag()
2770 var offsetEnd = rawOffsetEnd.coerceIn(offsetStart, maxPx) in onDrag() variable
2771 offsetEnd = snapValueToTick(offsetEnd, tickFractions, minPx, maxPx) in onDrag()
2772 SliderRange(offsetStart, offsetEnd) in onDrag()