Home
last modified time | relevance | path

Searched refs:bounds (Results 1 – 16 of 16) 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 &&
53 if (bounds != other.bounds) return false in equals()
63 result = 31 * result + bounds.hashCode() in hashCode()
DWindowContainer.kt57 open val bounds: Rect = Rect.EMPTY in <lambda>() constant
123 if (bounds != other.bounds) return false in <lambda>()
136 result = 31 * result + bounds.hashCode() in <lambda>()
DTask.kt31 override val bounds: Rect, in <lambda>() constant in com.android.server.wm.traces.common.windowmanager.windows.Task
105 return "${this::class.simpleName}: {$token $title} id=$taskId bounds=$bounds" in <lambda>()
114 if (bounds != other.bounds) return false in <lambda>()
134 result = 31 * result + bounds.hashCode() in <lambda>()
DTaskFragment.kt41 return "${this::class.simpleName}: {$token $title} bounds=$bounds" in toString()
/platform_testing/libraries/flicker/src/com/android/server/wm/traces/common/layers/
DLayer.kt41 val bounds: RectF, constant in com.android.server.wm.traces.common.layers.Layer
139 else -> !bounds.isEmpty
244 bounds.isEmpty -> "Bounds is 0x0"
262 else -> transform.apply(bounds)
330 if (bounds != other.bounds) return false in equals()
366 result = 31 * result + bounds.hashCode() in hashCode()
/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.java158 public default void scrollPage(Rect bounds, Direction dir, float percent) { in scrollPage() argument
/platform_testing/libraries/flicker/src/com/android/server/wm/traces/common/
DSize.kt44 fun prettyPrint(bounds: Size): String = "${bounds.width} x ${bounds.height}"
/platform_testing/libraries/app-helpers/interfaces/auto/src/android/platform/helpers/utility/
DScrollable.java232 Rect bounds = scrollable.getVisibleBounds(); in calcScrollSpeed() local
234 int scrollSpeed = (int) (bounds.height() / durationSeconds); in calcScrollSpeed()
/platform_testing/libraries/flicker/src/com/android/server/wm/traces/common/service/processors/
DPipResizeProcessor.kt59 val currBounds = current.layerState.getLayerById(currPinnedWindow.layerId)?.bounds in getInitialState()
60 val prevBounds = previous.layerState.getLayerById(currPinnedWindow.layerId)?.bounds in getInitialState()
DPipExpandProcessor.kt86 val currLayerBounds = current.layerState.getLayerById(layerId)?.bounds ?: return this in doProcessState()
87 val prevLayerBounds = previous.layerState.getLayerById(layerId)?.bounds ?: return this in doProcessState()
/platform_testing/libraries/automotive-helpers/standard-app-helper/src/android/platform/helpers/
DAbstractAutoStandardAppHelper.java227 Rect bounds = scrollable.getVisibleBounds(); in getScrollableMargin() local
228 int margin = (int) (Math.abs(bounds.width()) / 4); in getScrollableMargin()
230 margin = (int) (Math.abs(bounds.height()) / 4); in getScrollableMargin()
243 Rect bounds = scrollable.getVisibleBounds(); in getScrollSpeed() local
245 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.kt110 val bounds = Size(size.x, size.y) in <lambda>() constant
111 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.kt314 bounds = proto.bounds.toRect(), in <lambda>()
512 _bounds = proto.bounds?.toRect(), in <lambda>()