Searched refs:fullWidth (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | WindowManagerPolicy.java | 593 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation); in getNonDecorDisplayWidth() argument 600 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation); in getNonDecorDisplayHeight() argument 608 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation); in getConfigDisplayWidth() argument 616 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation); in getConfigDisplayHeight() argument
|
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
D | PhoneWindowManager.java | 1943 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) { in getNonDecorDisplayWidth() argument 1947 if (mNavigationBarCanMove && fullWidth > fullHeight) { in getNonDecorDisplayWidth() 1948 return fullWidth - mNavigationBarWidthForRotation[rotation]; in getNonDecorDisplayWidth() 1951 return fullWidth; in getNonDecorDisplayWidth() 1955 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) { in getNonDecorDisplayHeight() argument 1959 if (!mNavigationBarCanMove || fullWidth < fullHeight) { in getNonDecorDisplayHeight() 1967 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) { in getConfigDisplayWidth() argument 1968 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation); in getConfigDisplayWidth() 1972 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation) { in getConfigDisplayHeight() argument 1977 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation) - mStatusBarHeight; in getConfigDisplayHeight()
|