Home
last modified time | relevance | path

Searched refs:bounds (Results 1 – 17 of 17) sorted by relevance

/platform_testing/libraries/flicker/src/com/android/server/wm/traces/common/windowmanager/windows/
DWindowConfiguration.kt36 val bounds: Rect = _bounds ?: Rect.EMPTY constant
41 bounds.isEmpty &&
DActivityTask.kt31 override val bounds: Rect, in <lambda>() constant in com.android.server.wm.traces.common.windowmanager.windows.ActivityTask
97 return "${this::class.simpleName}: {$token $title} id=$taskId bounds=$bounds" in <lambda>()
DWindowContainer.kt55 open val bounds: Rect = Rect.EMPTY in <lambda>() constant
/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/traces/
DRegionSubject.kt40 get() = check(MSG_ERROR_TOP_POSITION).that(region.bounds.top) in <lambda>()
42 get() = check(MSG_ERROR_BOTTOM_POSITION).that(region.bounds.bottom) in <lambda>()
44 get() = check(MSG_ERROR_LEFT_POSITION).that(region.bounds.left) in <lambda>()
46 get() = check(MSG_ERROR_RIGHT_POSITION).that(region.bounds.right) in <lambda>()
48 get() = check(MSG_ERROR_AREA).that(region.bounds.area) in <lambda>()
73 leftPositionSubject.isEqualTo(other.bounds.left) in <lambda>()
74 rightPositionSubject.isEqualTo(other.bounds.right) in <lambda>()
75 areaSubject.isEqualTo(other.bounds.area) in <lambda>()
126 topPositionSubject.isAtMost(other.bounds.top) in <lambda>()
127 bottomPositionSubject.isAtMost(other.bounds.bottom) in <lambda>()
[all …]
/platform_testing/libraries/flicker/src/com/android/server/wm/traces/common/layers/
DLayer.kt83 val bounds: RectF = _bounds ?: RectF.EMPTY constant
127 else -> !bounds.isEmpty
241 bounds.isEmpty -> "Bounds is 0x0"
259 else -> transform.apply(bounds)
306 result = 31 * result + bounds.hashCode() in hashCode()
DTransform.kt103 fun apply(bounds: RectF?): RectF { in apply()
104 return multiplyRect(matrix, bounds ?: RectF.EMPTY) in apply()
/platform_testing/libraries/app-helpers/interfaces/common/src/android/platform/helpers/
DINewsHelper.java45 public default void scrollPage(Rect bounds, Direction dir, float percent) { in scrollPage() argument
DIMapsHelper.java159 public default void scrollPage(Rect bounds, Direction dir, float percent) { in scrollPage() argument
/platform_testing/libraries/flicker/src/com/android/server/wm/traces/common/
DBounds.kt47 fun prettyPrint(bounds: Bounds): String = "${bounds.width} x ${bounds.height}"
/platform_testing/libraries/app-helpers/interfaces/auto/src/android/platform/helpers/utility/
DScrollable.java213 Rect bounds = scrollable.getVisibleBounds(); in calcScrollSpeed() local
215 int scrollSpeed = (int) (bounds.height() / durationSeconds); in calcScrollSpeed()
/platform_testing/libraries/automotive-helpers/standard-app-helper/src/android/platform/helpers/
DAbstractAutoStandardAppHelper.java223 Rect bounds = scrollable.getVisibleBounds(); in getScrollableMargin() local
224 int margin = (int) (Math.abs(bounds.width()) / 4); in getScrollableMargin()
226 margin = (int) (Math.abs(bounds.height()) / 4); in getScrollableMargin()
239 Rect bounds = scrollable.getVisibleBounds(); in getScrollSpeed() local
241 int scrollSpeed = (int) (bounds.height() / timeSeconds); in getScrollSpeed()
/platform_testing/libraries/system-helpers/accessibility-helper/src/android/system/helpers/
DAccessibilityScannerHelper.java287 Rect bounds = btn.getVisibleBounds(); in moveScannerCheckButton() local
288 int origX = bounds.centerX(); in moveScannerCheckButton()
289 int origY = bounds.centerY(); in moveScannerCheckButton()
290 int buttonWidth = bounds.width(); in moveScannerCheckButton()
291 int buttonHeight = bounds.height(); in moveScannerCheckButton()
/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/traces/layers/
DLayerSubject.kt105 val bounds = Bounds(size.x, size.y) in <lambda>() constant
106 hasBufferSize(bounds) in <lambda>()
/platform_testing/tests/jank/UbSystemUiJankTests/src/android/platform/systemui/tests/jank/
DSystemUiJankTests.java674 Rect bounds = brightness.getVisibleBounds(); in testChangeBrightness() local
676 mDevice.swipe(bounds.left, bounds.centerY(), in testChangeBrightness()
677 bounds.right, bounds.centerY(), BRIGHTNESS_SCROLL_STEPS); in testChangeBrightness()
/platform_testing/libraries/flicker/src/com/android/server/wm/traces/parser/windowmanager/
DWindowManagerTraceParser.kt311 bounds = proto.bounds.toRect(), in <lambda>()
485 _bounds = proto.bounds?.toRect(), in <lambda>()
/platform_testing/libraries/flicker/src/com/android/server/wm/traces/parser/layers/
DLayersTraceParser.kt166 proto.bounds?.toRectF() ?: RectF.EMPTY, in newLayer()
/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/helpers/
DAutomationUtils.kt115 getNavigationBarPosition(Surface.ROTATION_0).bounds in openQuickstep()