Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DWindowManagerPolicy.java613 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation); in getNonDecorDisplayWidth() argument
620 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation); in getNonDecorDisplayHeight() argument
628 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation); in getConfigDisplayWidth() argument
636 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation); in getConfigDisplayHeight() argument
/frameworks/base/services/core/java/com/android/server/policy/
DPhoneWindowManager.java2164 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) { in getNonDecorDisplayWidth() argument
2168 if (mNavigationBarCanMove && fullWidth > fullHeight) { in getNonDecorDisplayWidth()
2176 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) { in getNonDecorDisplayHeight() argument
2180 if (!mNavigationBarCanMove || fullWidth < fullHeight) { in getNonDecorDisplayHeight()
2181 return fullHeight - mNavigationBarHeightForRotation[rotation]; in getNonDecorDisplayHeight()
2184 return fullHeight; in getNonDecorDisplayHeight()
2188 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) { in getConfigDisplayWidth() argument
2189 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation); in getConfigDisplayWidth()
2193 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) { in getConfigDisplayHeight() argument
2198 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight; in getConfigDisplayHeight()