Home
last modified time | relevance | path

Searched refs:mMinHeight (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/core/java/android/app/
DMediaRouteButton.java49 private int mMinHeight; field in MediaRouteButton
88 mMinHeight = a.getDimensionPixelSize( in MediaRouteButton()
287 final int height = Math.max(mMinHeight, mRemoteIndicator != null ? in onMeasure()
DActivityManager.java1058 private int mMinHeight; field in ActivityManager.TaskDescription
1155 mMinHeight = minHeight; in TaskDescription()
1182 mMinHeight = other.mMinHeight; in copyFrom()
1216 if (other.mMinHeight != -1) { in copyFromPreserveHiddenFields()
1217 mMinHeight = other.mMinHeight; in copyFromPreserveHiddenFields()
1316 mMinHeight = minHeight; in setMinHeight()
1489 return mMinHeight; in getMinHeight()
1577 dest.writeInt(mMinHeight); in writeToParcel()
1599 mMinHeight = source.readInt(); in readFromParcel()
1624 + " minWidth: " + mMinWidth + " minHeight: " + mMinHeight; in toString()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/
DBubbleExpandedView.java117 private int mMinHeight; field in BubbleExpandedView
276 mMinHeight = res.getDimensionPixelSize(R.dimen.bubble_expanded_default_height); in updateDimensions()
681 desiredHeight = Math.max(mBubble.getDesiredHeight(mContext), mMinHeight); in updateHeight()
684 height = Math.max(height, mMinHeight); in updateHeight()
/frameworks/base/core/java/android/widget/
DProgressBar.java186 int mMinHeight; field in ProgressBar
293 mMinHeight = a.getDimensionPixelSize(R.styleable.ProgressBar_minHeight, mMinHeight); in ProgressBar()
459 mMinHeight = minHeight; in setMinHeight()
467 return mMinHeight; in getMinHeight()
644 mMinHeight = 24; in initProgressBar()
2159 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight())); in onMeasure()
DNumberPicker.java255 private final int mMinHeight; field in NumberPicker
679 mMinHeight = attributesArray.getDimensionPixelSize( in NumberPicker()
684 if (mMinHeight != SIZE_UNSPECIFIED && mMaxHeight != SIZE_UNSPECIFIED in NumberPicker()
685 && mMinHeight > mMaxHeight) { in NumberPicker()
860 final int heightSize = resolveSizeAndStateRespectingMinSize(mMinHeight, getMeasuredHeight(), in onMeasure()
DAbsSeekBar.java881 dh = Math.max(mMinHeight, Math.min(mMaxHeight, d.getIntrinsicHeight()));
/frameworks/base/services/core/java/com/android/server/wm/
DTask.java323 int mMinHeight; field in Task
590 mMinHeight = minHeight; in Task()
1039 mMinHeight = info.windowLayout.minHeight; in setMinDimensions()
1042 mMinHeight = INVALID_MIN_SIZE; in setMinDimensions()
1725 taskDescription.setMinHeight(mMinHeight); in updateTaskDescription()
1797 int minHeight = mMinHeight; in adjustForMinimalTaskDimensions()
4012 out.attribute(null, ATTR_MIN_HEIGHT, String.valueOf(mMinHeight));
DActivityStack.java2809 pw.print(" mMinHeight="); pw.println(task.mMinHeight); in dumpActivities()
3379 proto.write(MIN_HEIGHT, mMinHeight); in dumpDebug()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DTaskLaunchParamsModifierTests.java1387 private int mMinHeight = -1; field in TaskLaunchParamsModifierTests.WindowLayoutBuilder
1420 mMinHeight = minHeight; in setMinHeight()
1426 mGravity, mMinWidth, mMinHeight); in build()
/frameworks/base/core/java/android/view/
DView.java4947 private int mMinHeight; field in View
5803 mMinHeight = a.getDimensionPixelSize(attr, 0);
25685 return (mBackground == null) ? mMinHeight : max(mMinHeight, mBackground.getMinimumHeight()); in getSuggestedMinimumHeight()
25715 return mMinHeight; in getMinimumHeight()
25731 mMinHeight = minHeight; in setMinimumHeight()
29998 stream.addProperty("measurement:minHeight", mMinHeight); in encodeProperties()