Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/am/
DActivityStackSupervisor.java4347 int verticalDiff = stackBounds.top - bounds.top; in fitWithinBounds() local
4348 if ((verticalDiff < 0 && bounds.top >= maxBottom) in fitWithinBounds()
4349 || (bounds.top + verticalDiff >= maxBottom)) { in fitWithinBounds()
4350 verticalDiff = maxBottom - bounds.top; in fitWithinBounds()
4352 bounds.top += verticalDiff; in fitWithinBounds()
4353 bounds.bottom += verticalDiff; in fitWithinBounds()