Searched defs:fullWidth (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) {
1455 return fullWidth - mNavigationBarWidthForRotation[rotation];
1458 return fullWidth;
1461 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation) { argument
1469 if (!mNavigationBarCanMove || fullWidth < 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, int rotation) { argument
1487 return getNonDecorDisplayHeight(fullWidth, fullHeigh
[all...]

Completed in 1177 milliseconds