Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/core/java/com/android/server/wm/
H A DActivityRecord.java8256 int activityHeight = containingAppHeight; in applyAspectRatio() local
8262 activityHeight = (int) ((activityWidth * desiredAspectRatio) + 0.5f); in applyAspectRatio()
8266 activityWidth = (int) ((activityHeight * desiredAspectRatio) + 0.5f); in applyAspectRatio()
8296 activityWidth = (int) ((activityHeight / desiredAspectRatio) + 0.5f); in applyAspectRatio()
8298 activityHeight = (int) ((activityWidth / desiredAspectRatio) + 0.5f); in applyAspectRatio()
8302 if (containingAppWidth <= activityWidth && containingAppHeight <= activityHeight) { in applyAspectRatio()
8316 int bottom = activityHeight + containingAppBounds.top; in applyAspectRatio()