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.java78 int fullHeight = mMediaContent.getMeasuredHeight(); in onMeasure() local
79 if (size > fullHeight) { in onMeasure()
80 size = fullHeight; in onMeasure()
81 } else if (size < fullHeight) { in onMeasure()
83 mImagePushIn = fullHeight - size; in onMeasure()
85 if (layoutParams.width != fullHeight || layoutParams.height != fullHeight) { in onMeasure()
86 layoutParams.width = fullHeight; in onMeasure()
87 layoutParams.height = fullHeight; in onMeasure()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationShelf.java544 int fullHeight = row.getActualHeight() + mPaddingBetweenElements;
547 iconTransformDistance = Math.min(iconTransformDistance, fullHeight);
549 fullHeight = Math.min(fullHeight, row.getMinHeight() - getIntrinsicHeight());
553 float viewEnd = viewStart + fullHeight;
586 fullHeight = iconState.customTransformHeight;
594 float fullAmount = (shelfStart - viewStart) / fullHeight;
/frameworks/base/services/core/java/com/android/server/wm/
DDisplayPolicy.java2830 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation, int uiMode, in getNonDecorDisplayWidth() argument
2834 final int navBarPosition = navigationBarPosition(fullWidth, fullHeight, rotation); in getNonDecorDisplayWidth()
2878 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation, int uiMode, in getNonDecorDisplayHeight() argument
2880 int height = fullHeight; in getNonDecorDisplayHeight()
2882 final int navBarPosition = navigationBarPosition(fullWidth, fullHeight, rotation); in getNonDecorDisplayHeight()
2899 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation, int uiMode, in getConfigDisplayWidth() argument
2901 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation, uiMode, displayCutout); in getConfigDisplayWidth()
2910 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation, int uiMode, in getConfigDisplayHeight() argument
2922 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation, uiMode, displayCutout) in getConfigDisplayHeight()