Home
last modified time | relevance | path

Searched refs:dragController (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/compose/scene/tests/src/com/android/compose/animation/scene/
DDraggableHandlerTest.kt196 val dragController = in onDragStarted() constant
204 dragController.onDragDelta(pixels = overSlop) in onDragStarted()
206 return dragController in onDragStarted()
267 val dragController = onDragStarted(overSlop = down(fractionOfScreen = 0.1f)) in <lambda>() constant
271 dragController.onDragDelta(pixels = down(fractionOfScreen = 0.1f)) in <lambda>()
277 val dragController = onDragStarted(overSlop = down(fractionOfScreen = 0.1f)) in <lambda>() constant
280 dragController.onDragStopped(velocity = velocityThreshold - 0.01f) in <lambda>()
290 val dragController = onDragStarted(overSlop = down(fractionOfScreen = 0.1f)) in <lambda>() constant
293 dragController.onDragStopped(velocity = velocityThreshold) in <lambda>()
303 val dragController = onDragStarted(overSlop = down(fractionOfScreen = 0.1f)) in <lambda>() constant
[all …]
/frameworks/base/packages/SystemUI/compose/scene/src/com/android/compose/animation/scene/
DDraggableHandler.kt68 private var dragController: DragControllerImpl? = null in onDrag() variable in com.android.compose.animation.scene.DraggableHandlerImpl
71 get() = dragController?.isDrivingTransition == true in onDrag()
95 val dragController = dragController in onDrag() constant
96 if (dragController?.isDrivingTransition != true) { in onDrag()
100 val swipeTransition = dragController.swipeTransition in onDrag()
124 val oldDragController = dragController in onDrag()
176 dragController = newDragController in onDrag()
953 var dragController: DragController? = null in nestedScrollConnection() variable
1040 dragController = in nestedScrollConnection()
1048 val controller = dragController ?: error("Should be called after onStart") in nestedScrollConnection()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRowControllerTest.kt108 private val dragController: ExpandableNotificationRowDragController = mock() constant in com.android.systemui.statusbar.notification.row.ExpandableNotificationRowControllerTest
148 dragController, in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRowController.java231 ExpandableNotificationRowDragController dragController, in ExpandableNotificationRowController()
259 mDragController = dragController; in ExpandableNotificationRowController()
DExpandableNotificationRow.java1238 public void setDragController(ExpandableNotificationRowDragController dragController) {
1239 mDragController = dragController;