Home
last modified time | relevance | path

Searched refs:endY (Results 1 – 7 of 7) sorted by relevance

/platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper2/
DNexusLauncherStrategy.java121 int endY = (int) (mDevice.getDisplayHeight() * 0.1f); in openAllApps() local
123 start.x, start.y, start.x, endY, (start.y - endY) / 100); // 100 px/step in openAllApps()
DBaseLauncher3Strategy.java107 int endY = (int) (mDevice.getDisplayHeight() * 0.1f); in openAllApps() local
109 start.x, start.y, start.x, endY, (start.y - endY) / 100); // 100 px/step in openAllApps()
/platform_testing/libraries/uiautomator-helpers/src/android/platform/uiautomator_helpers/
DDeviceHelpers.kt321 endY: Int, in UiDevice()
324 DeviceHelpers.betterSwipe(startX, startY, endX, endY, interpolator) in UiDevice()
338 endY: Int, in betterSwipe()
341 trace("Swiping ($startX,$startY) -> ($endX,$endY)") { in betterSwipe()
343 .to(PointF(endX.toFloat(), endY.toFloat()), interpolator = interpolator) in betterSwipe()
/platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper/
DNexusLauncherStrategy.java129 int endY = (int) (mDevice.getDisplayHeight() * 0.1f); in openAllApps() local
134 endY, in openAllApps()
135 (start.y - endY) / 100); // 100 px/step in openAllApps()
DBaseLauncher3Strategy.java114 int endY = (int) (mDevice.getDisplayHeight() * 0.1f); in openAllApps() local
116 start.x, start.y, start.x, endY, (start.y - endY) / 100); // 100 px/step in openAllApps()
/platform_testing/libraries/flicker/utils/src/android/tools/helpers/
DAutomationUtils.kt101 val endY: Int in openQuickstep() constant
107 endY = navBarVisibleBounds.centerY() in openQuickstep()
112 endY = height * 2 / 3 in openQuickstep()
113 steps = (startY - endY) / 100 // 100 px/step in openQuickstep()
116 this.swipe(startX, startY, endX, endY, steps) in openQuickstep()
/platform_testing/libraries/screenshot/src/main/java/platform/test/screenshot/matchers/
DBitmapMatcher.kt115 val endY = region.bottom.coerceIn(0, height - 1) in <lambda>() constant
117 for (y in startY..endY) { in <lambda>()