Home
last modified time | relevance | path

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

/platform_testing/libraries/motion/src/platform/test/motion/filmstrip/
DFilmstrip.kt79 val scale = min(scaleX, scaleY).coerceAtMost(1f) constant
82 HorizontalFilmstripRenderer(screenshots, screenshotWidth, screenshotHeight, scale)
84 VerticalFilmstripRenderer(screenshots, screenshotWidth, screenshotHeight, scale)
104 val scale: Float constant in platform.test.motion.filmstrip.FilmstripRenderer
134 scale: Float in render()
135 ) : FilmstripRenderer(screenshots, screenshotWidth, screenshotHeight, scale) { in render()
166 transform.postScale(scale, scale, left, 0f) in render()
191 scale: Float
192 ) : FilmstripRenderer(screenshots, screenshotWidth, screenshotHeight, scale) {
216 transform.postScale(scale, scale, 0f, top) in render()
/platform_testing/libraries/flicker/utils/src/android/tools/traces/view/
DViewNode.kt38 val scale: PointF, // [default = 1, 1]; constant in android.tools.traces.view.ViewNode
56 if (scale != other.scale) return false in equals()
74 result = 31 * result + scale.hashCode() in hashCode()
95 scale: PointF, in toString()
110 scale, in toString()
/platform_testing/libraries/flicker/src/android/tools/flicker/assertors/assertions/
DAppWindowHasDesktopModeInitialBoundsAtTheEnd.kt32 val scale = in doEvaluate() constant
36 val desiredWidth = displayBounds.width().times(scale).toInt() in doEvaluate()
37 val desiredHeight = displayBounds.height().times(scale).toInt() in doEvaluate()
/platform_testing/libraries/health/runners/longevity/platform/src/android/platform/test/longevity/listener/
DBatteryTerminator.java55 int scale = batteryIntent.getIntExtra("scale", -1); in getBatteryLevel() local
56 if (level < 0 || scale <= 0) { in getBatteryLevel()
59 return (double) level / (double) scale; in getBatteryLevel()
/platform_testing/libraries/app-helpers/interfaces/auto/src/android/platform/helpers/
DIAutoMapsHelper.java156 void scale(float percent, long durationMs); in scale() method
/platform_testing/libraries/flicker/utils/src/android/tools/traces/parsers/view/
DViewFrameBuilder.kt50 scale = PointF(node.scaleX, node.scaleY), in parseViewNode()
/platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
DAuptTestRunner.java570 int scale = batteryIntent.getIntExtra("scale", -1);
572 if (rawLevel < 0 || scale <= 0) {
576 double level = (double) rawLevel / (double) scale;