Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/widget/
DMediaNotificationView.java73 int fullHeight = getMeasuredHeight(); in onMeasure() local
74 if (size > fullHeight) { in onMeasure()
75 size = fullHeight; in onMeasure()
76 } else if (size < fullHeight) { in onMeasure()
78 mImagePushIn = fullHeight - size; in onMeasure()
80 if (layoutParams.width != fullHeight || layoutParams.height != fullHeight) { in onMeasure()
81 layoutParams.width = fullHeight; in onMeasure()
82 layoutParams.height = fullHeight; in onMeasure()
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
DTestWindowManagerPolicy.java112 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation, int uiMode, in getNonDecorDisplayWidth() argument
118 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation, int uiMode, in getNonDecorDisplayHeight() argument
124 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation, int uiMode, in getConfigDisplayWidth() argument
130 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation, int uiMode, in getConfigDisplayHeight() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationShelf.java479 int fullHeight = row.getActualHeight() + mPaddingBetweenElements;
482 iconTransformDistance = Math.min(iconTransformDistance, fullHeight);
484 fullHeight = Math.min(fullHeight, row.getMinHeight() - getIntrinsicHeight());
488 float viewEnd = viewStart + fullHeight;
520 fullHeight = iconState.customTransformHeight;
528 float fullAmount = (shelfStart - viewStart) / fullHeight;
/frameworks/base/services/core/java/com/android/server/policy/
DWindowManagerPolicy.java951 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation, in getNonDecorDisplayWidth() argument
959 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation, in getNonDecorDisplayHeight() argument
968 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation, in getConfigDisplayWidth() argument
977 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation, in getConfigDisplayHeight() argument
DPhoneWindowManager.java2947 public int getNonDecorDisplayWidth(int fullWidth, int fullHeight, int rotation, int uiMode, in getNonDecorDisplayWidth() argument
2954 if (mNavigationBarCanMove && fullWidth > fullHeight) { in getNonDecorDisplayWidth()
2973 public int getNonDecorDisplayHeight(int fullWidth, int fullHeight, int rotation, int uiMode, in getNonDecorDisplayHeight() argument
2975 int height = fullHeight; in getNonDecorDisplayHeight()
2980 if (!mNavigationBarCanMove || fullWidth < fullHeight) { in getNonDecorDisplayHeight()
2991 public int getConfigDisplayWidth(int fullWidth, int fullHeight, int rotation, int uiMode, in getConfigDisplayWidth() argument
2993 return getNonDecorDisplayWidth(fullWidth, fullHeight, rotation, uiMode, displayId, in getConfigDisplayWidth()
2998 public int getConfigDisplayHeight(int fullWidth, int fullHeight, int rotation, int uiMode, in getConfigDisplayHeight() argument
3012 return getNonDecorDisplayHeight(fullWidth, fullHeight, rotation, uiMode, displayId, in getConfigDisplayHeight()
3015 return fullHeight; in getConfigDisplayHeight()