Searched refs:actualHeight (Results 1 - 8 of 8) sorted by relevance

/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DImageRequest.java182 int actualHeight = decodeOptions.outHeight;
186 actualWidth, actualHeight, mScaleType);
188 actualHeight, actualWidth, mScaleType);
195 findBestSampleSize(actualWidth, actualHeight, desiredWidth, desiredHeight);
227 * @param actualHeight Actual height of the bitmap
233 int actualWidth, int actualHeight, int desiredWidth, int desiredHeight) {
235 double hr = (double) actualHeight / desiredHeight;
232 findBestSampleSize( int actualWidth, int actualHeight, int desiredWidth, int desiredHeight) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableOutlineView.java58 public void setActualHeight(int actualHeight, boolean notifyListeners) { argument
59 super.setActualHeight(actualHeight, notifyListeners);
H A DNotificationBackgroundView.java109 public void setActualHeight(int actualHeight) { argument
110 mActualHeight = actualHeight;
H A DExpandableView.java117 * @param actualHeight The height of this notification.
120 public void setActualHeight(int actualHeight, boolean notifyListeners) { argument
121 mActualHeight = actualHeight;
128 public void setActualHeight(int actualHeight) { argument
129 setActualHeight(actualHeight, true /* notifyListeners */);
H A DActivatableNotificationView.java661 public void setActualHeight(int actualHeight, boolean notifyListeners) { argument
662 super.setActualHeight(actualHeight, notifyListeners);
663 setPivotY(actualHeight / 2);
664 mBackgroundNormal.setActualHeight(actualHeight);
665 mBackgroundDimmed.setActualHeight(actualHeight);
805 final int actualHeight = getActualHeight();
807 bottom = actualHeight - heightFraction * mAnimationTranslationY * 0.1f
811 top = heightFraction * (actualHeight + mAnimationTranslationY) * 0.1f -
813 bottom = actualHeight * (1 - heightFraction) + top * heightFraction;
H A DNotificationGuts.java426 public void setActualHeight(int actualHeight) { argument
427 mActualHeight = actualHeight;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DStackStateAnimator.java887 int actualHeight = changingView.getActualHeight();
894 - (changingView.getTranslationY() + actualHeight / 2.0f)) * 2 /
895 actualHeight);
1011 * Get the end value of the height animation running on a view or the actualHeight
H A DNotificationChildrenContainer.java739 public void setActualHeight(int actualHeight) { argument
743 mActualHeight = actualHeight;

Completed in 1355 milliseconds