Searched refs:pointerId (Results 1 – 2 of 2) sorted by relevance
/platform_testing/libraries/motion/compose/src/platform/test/motion/compose/ |
D | ComposeToolkit.kt | 397 onNode.performTouchInput { down(entry.pointerId, entry.position) } in <lambda>() 400 is TouchEventRecorderEntry.Up -> onNode.performTouchInput { up(entry.pointerId) } in <lambda>() 402 onNode.performTouchInput { updatePointerTo(entry.pointerId, entry.position) } in <lambda>() 420 class Down(val pointerId: Int, val position: Offset) : TouchEventRecorderEntry constant in platform.test.motion.compose.TouchEventRecorderEntry.Down 424 class Up(val pointerId: Int) : TouchEventRecorderEntry constant in platform.test.motion.compose.TouchEventRecorderEntry.Up 426 class UpdatePointerTo(val pointerId: Int, val position: Offset) : TouchEventRecorderEntry constant in platform.test.motion.compose.TouchEventRecorderEntry.UpdatePointerTo 449 override fun currentPosition(pointerId: Int): Offset? { in <lambda>() 450 return lastPositions[pointerId] in <lambda>() 453 override fun down(pointerId: Int, position: Offset) { in <lambda>() 454 recordedEntries.add(TouchEventRecorderEntry.Down(pointerId, position)) in <lambda>() [all …]
|
/platform_testing/libraries/uiautomator-helpers/src/android/platform/uiautomator_helpers/ |
D | BetterSwipe.kt | 74 private val pointerId = lastPointerId.incrementAndGet() in <lambda>() constant 80 log("Touch $pointerId started at $start") in <lambda>() 135 log("Touch $pointerId released at $lastPoint") in <lambda>() 164 val event = getMotionEvent(downTime, currentTime, action, point, pointerId) in <lambda>() 269 pointerId: Int, in getMotionEvent() 273 id = pointerId in getMotionEvent()
|