Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/recents/utilities/
H A DPreviewPositionHelper.java62 int canvasWidth, int canvasHeight, int screenWidthPx, int screenHeightPx, in updateThumbnailMatrix() argument
80 if (canvasWidth == 0 || canvasHeight == 0 || scale == 0) { in updateThumbnailMatrix()
93 float canvasAspect = canvasWidth / (float) canvasHeight; in updateThumbnailMatrix()
121 targetH = canvasWidth; in updateThumbnailMatrix()
123 targetW = canvasWidth; in updateThumbnailMatrix()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/gestural/
H A DBackPanel.kt454 val canvasWidth = width regex
460 if (!isLeftPanel) canvas.scale(-1f, 1f, canvasWidth / 2.0f, 0f)
H A DBackPanelController.kt1103 val canvasWidth = canvas.width.toFloat() regex
1105 canvas.drawRect(0f, 0f, canvasWidth, canvasHeight, debugPaint)
1109 val x = if (mView.isLeftPanel) x else canvasWidth - x
/aosp14/frameworks/base/core/java/com/android/internal/policy/
H A DDecorView.java1077 public static void getNavigationBarRect(int canvasWidth, int canvasHeight, Rect systemBarInsets, in getNavigationBarRect() argument
1084 outRect.set(canvasWidth - size, 0, canvasWidth, canvasHeight); in getNavigationBarRect()
1088 outRect.set(0, canvasHeight - size, canvasWidth, canvasHeight); in getNavigationBarRect()