Home
last modified time | relevance | path

Searched refs:fullHeight (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
DMediaNotificationView.java75 int fullHeight = mMediaContent.getMeasuredHeight(); in onMeasure() local
76 if (size > fullHeight) { in onMeasure()
77 size = fullHeight; in onMeasure()
78 } else if (size < fullHeight) { in onMeasure()
80 mImagePushIn = fullHeight - size; in onMeasure()
82 if (layoutParams.width != fullHeight || layoutParams.height != fullHeight) { in onMeasure()
83 layoutParams.width = fullHeight; in onMeasure()
84 layoutParams.height = fullHeight; in onMeasure()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationShelf.java558 int fullHeight = row.getActualHeight() + mPaddingBetweenElements;
561 iconTransformDistance = Math.min(iconTransformDistance, fullHeight);
563 fullHeight = Math.min(fullHeight, row.getMinHeight() - getIntrinsicHeight());
567 float viewEnd = viewStart + fullHeight;
600 fullHeight = iconState.customTransformHeight;
608 float fullAmount = (shelfStart - viewStart) / fullHeight;
/frameworks/base/services/core/java/com/android/server/wm/
DDisplayPolicy.java2816 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation, int uiMode, in getNonDecorDisplayWidth() argument
2820 final int navBarPosition = navigationBarPosition(fullWidth, fullHeight, rotation); in getNonDecorDisplayWidth()
2864 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation, int uiMode, in getNonDecorDisplayHeight() argument
2866 int height = fullHeight; in getNonDecorDisplayHeight()
2868 final int navBarPosition = navigationBarPosition(fullWidth, fullHeight, rotation); in getNonDecorDisplayHeight()
2885 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation, int uiMode, in getConfigDisplayWidth() argument
2887 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation, uiMode, displayCutout); in getConfigDisplayWidth()
2896 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation, int uiMode, in getConfigDisplayHeight() argument
2908 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation, uiMode, displayCutout) in getConfigDisplayHeight()