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

/frameworks/base/core/java/android/view/
H A DWindowManagerPolicy.java589 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation); argument
596 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation); argument
604 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation); argument
612 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation); argument
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java1452 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) { argument
1456 if (mNavigationBarCanMove && fullWidth > fullHeight) {
1463 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) { argument
1466 return fullHeight - mNavigationBarHeightForRotation[rotation];
1471 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
1472 return fullHeight - mNavigationBarHeightForRotation[rotation];
1475 return fullHeight;
1478 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) { argument
1479 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
1482 public int getConfigDisplayHeight(int fullWidth, int fullHeight, in argument
[all...]

Completed in 72 milliseconds