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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DExpandableOutlineView.java53 public void setActualHeight(int actualHeight, boolean notifyListeners) { argument
54 super.setActualHeight(actualHeight, notifyListeners);
H A DNotificationGuts.java84 public void setActualHeight(int actualHeight) { argument
85 mActualHeight = actualHeight;
H A DNotificationBackgroundView.java108 public void setActualHeight(int actualHeight) { argument
109 mActualHeight = actualHeight;
H A DNotificationContentView.java120 public void setActualHeight(int actualHeight) { argument
121 mActualHeight = actualHeight;
H A DExpandableView.java127 * @param actualHeight The height of this notification.
130 public void setActualHeight(int actualHeight, boolean notifyListeners) { argument
132 mActualHeight = actualHeight;
138 public void setActualHeight(int actualHeight) { argument
139 setActualHeight(actualHeight, true);
H A DActivatableNotificationView.java472 public void setActualHeight(int actualHeight, boolean notifyListeners) { argument
473 super.setActualHeight(actualHeight, notifyListeners);
474 setPivotY(actualHeight / 2);
475 mBackgroundNormal.setActualHeight(actualHeight);
476 mBackgroundDimmed.setActualHeight(actualHeight);
/frameworks/volley/src/com/android/volley/toolbox/
H A DImageRequest.java149 int actualHeight = decodeOptions.outHeight;
153 actualWidth, actualHeight);
155 actualHeight, actualWidth);
162 findBestSampleSize(actualWidth, actualHeight, desiredWidth, desiredHeight);
194 * @param actualHeight Actual height of the bitmap
200 int actualWidth, int actualHeight, int desiredWidth, int desiredHeight) {
202 double hr = (double) actualHeight / desiredHeight;
199 findBestSampleSize( int actualWidth, int actualHeight, int desiredWidth, int desiredHeight) argument
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DGlowPadView.java1049 int actualWidth, int actualHeight) {
1082 if (desiredHeight > actualHeight) {
1083 scaleY = (1f * actualHeight - mMaxTargetHeight) /
1048 computeScaleFactor(int desiredWidth, int desiredHeight, int actualWidth, int actualHeight) argument

Completed in 1770 milliseconds