Searched refs:fullWidth (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | WindowManagerPolicy.java | 613 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/ |
D | PhoneWindowManager.java | 2164 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) { in getNonDecorDisplayWidth() argument 2168 if (mNavigationBarCanMove && fullWidth > fullHeight) { in getNonDecorDisplayWidth() 2169 return fullWidth - mNavigationBarWidthForRotation[rotation]; in getNonDecorDisplayWidth() 2172 return fullWidth; in getNonDecorDisplayWidth() 2176 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) { in getNonDecorDisplayHeight() argument 2180 if (!mNavigationBarCanMove || fullWidth < 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()
|