/frameworks/base/core/java/com/android/internal/widget/ |
D | MediaNotificationView.java | 73 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/ |
D | TestWindowManagerPolicy.java | 112 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/ |
D | NotificationShelf.java | 479 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/ |
D | WindowManagerPolicy.java | 951 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
|
D | PhoneWindowManager.java | 2947 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()
|