Searched refs:fullHeight (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DMediaNotificationView.java73 int fullHeight = getMeasuredHeight();
74 if (size > fullHeight) {
75 size = fullHeight;
76 } else if (size < fullHeight) {
78 mImagePushIn = fullHeight - size;
80 if (layoutParams.width != fullHeight || layoutParams.height != fullHeight) {
81 layoutParams.width = fullHeight;
82 layoutParams.height = fullHeight;
/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/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationShelf.java406 int fullHeight = row.getActualHeight() + mPaddingBetweenElements;
409 iconTransformDistance = Math.min(iconTransformDistance, fullHeight);
411 fullHeight = Math.min(fullHeight, row.getMinHeight() - getIntrinsicHeight());
415 float viewEnd = viewStart + fullHeight;
447 fullHeight = iconState.customTransformHeight;
455 float fullAmount = (shelfStart - viewStart) / fullHeight;
/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 1928 milliseconds