Searched defs:fullWidth (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java658 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation, argument
666 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation, argument
675 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation, argument
684 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation, argument
/frameworks/base/services/core/java/com/android/server/policy/
H A DPhoneWindowManager.java2459 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation, argument
2464 if (mNavigationBarCanMove && fullWidth > fullHeight) {
2465 return fullWidth - getNavigationBarWidth(rotation, uiMode);
2468 return fullWidth;
2480 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation, argument
2485 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
2493 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation, int uiMode) { argument
2494 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation, uiMode);
2498 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation, int uiMode) { argument
2504 fullWidth, fullHeigh
[all...]

Completed in 5651 milliseconds