Home
last modified time | relevance | path

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

/platform_testing/libraries/systemui-helper/src/android/platform/helpers/media/
DMediaController.java190 final int startX; in swipe() local
194 startX = (bound.right + bound.centerX()) / 2; in swipe()
198 startX = (bound.left + bound.centerX()) / 2; in swipe()
205 return mDevice.swipe(startX, bound.centerY(), endX, bound.centerY(), 10); in swipe()
/platform_testing/libraries/uiautomator-helpers/src/android/platform/uiautomator_helpers/
DDeviceHelpers.kt318 startX: Int, in UiDevice()
324 DeviceHelpers.betterSwipe(startX, startY, endX, endY, interpolator) in UiDevice()
335 startX: Int, in betterSwipe()
341 trace("Swiping ($startX,$startY) -> ($endX,$endY)") { in betterSwipe()
342 BetterSwipe.from(PointF(startX.toFloat(), startY.toFloat())) in betterSwipe()
/platform_testing/libraries/screenshot/src/main/java/platform/test/screenshot/matchers/
DBitmapMatcher.kt112 val startX = region.left.coerceIn(0, width - 1) in <lambda>() constant
116 for (x in startX..endX) { in <lambda>()
/platform_testing/libraries/flicker/utils/src/android/tools/helpers/
DAutomationUtils.kt98 val startX = navBarVisibleBounds.centerX() in openQuickstep() constant
108 steps = (endX - startX) / 100 // 100 px/step in openQuickstep()
116 this.swipe(startX, startY, endX, endY, steps) in openQuickstep()