Searched refs:mMaxHeight (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/ui/
H A DMaxHeightScrollView.java32 private final int mMaxHeight; field in class:MaxHeightScrollView
38 mMaxHeight = attr.getDimensionPixelSize(R.styleable.MaxHeightScrollView_android_maxHeight,
46 if (mMaxHeight != NO_MAX_HEIGHT) {
47 setMeasuredDimension(getMeasuredWidth(), Math.min(getMeasuredHeight(), mMaxHeight));
/packages/apps/TV/src/com/android/tv/util/
H A DImageLoader.java265 protected final int mMaxHeight; field in class:ImageLoader.LoadBitmapTask
277 .needToReload(mMaxWidth, mMaxHeight);
284 + ", reqHeight=" + mMaxHeight
295 return (other.mMaxHeight != Integer.MAX_VALUE && mMaxHeight >= other.mMaxHeight * 2)
314 mMaxHeight = maxHeight;
355 return this.getClass().getSimpleName() + "(" + mKey + " " + mMaxWidth + "x" + mMaxHeight
370 .decodeSampledBitmapFromUriString(mAppContext, getKey(), mMaxWidth, mMaxHeight);
403 return BitmapUtils.createScaledBitmapInfo(getKey(), original, mMaxWidth, mMaxHeight);
[all...]
/packages/apps/TV/src/com/android/tv/tuner/layout/
H A DScaledLayout.java54 private final int mMaxHeight; field in class:ScaledLayout
72 mMaxHeight = size.y;
205 scaleHeight > mMaxHeight ? mMaxHeight : scaleHeight, MeasureSpec.EXACTLY);
/packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/
H A DCameraManager.java714 private final int mMaxHeight; field in class:CameraManager.SizeComparator
728 mMaxHeight = maxHeight;
740 if ((left.width <= mMaxWidth && left.height <= mMaxHeight)
741 != (right.width <= mMaxWidth && right.height <= mMaxHeight)) {
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
H A DCameraManager.java1041 private final int mMaxHeight; field in class:CameraManager.SizeComparator
1052 mMaxHeight = maxHeight;
1064 if ((left.width <= mMaxWidth && left.height <= mMaxHeight) !=
1065 (right.width <= mMaxWidth && right.height <= mMaxHeight)) {

Completed in 169 milliseconds