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.java1450 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation) { argument
1454 if (mNavigationBarCanMove && fullWidth > fullHeight) {
1461 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) { argument
1464 return fullHeight - mNavigationBarHeightForRotation[rotation];
1469 if (!mNavigationBarCanMove || fullWidth < fullHeight) {
1470 return fullHeight - mNavigationBarHeightForRotation[rotation];
1473 return fullHeight;
1476 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation) { argument
1477 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation);
1480 public int getConfigDisplayHeight(int fullWidth, int fullHeight, in argument
[all...]

Completed in 253 milliseconds