Searched defs:fullHeight (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
H A DTestWindowManagerPolicy.java166 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation, int uiMode, argument
172 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation, int uiMode, argument
178 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation, int uiMode, argument
184 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation, int uiMode, argument
/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java939 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation, argument
947 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation, argument
956 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation, argument
965 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation, argument
/frameworks/base/services/core/java/com/android/server/policy/
H A DPhoneWindowManager.java2738 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation, int uiMode, argument
2744 if (mNavigationBarCanMove && fullWidth > fullHeight) {
2760 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation, int uiMode, argument
2766 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
2767 return fullHeight - getNavigationBarHeight(rotation, uiMode);
2770 return fullHeight;
2774 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation, int uiMode, argument
2776 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation, uiMode, displayId);
2780 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation, int uiMode, argument
2788 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotatio
[all...]

Completed in 127 milliseconds