Home
last modified time | relevance | path

Searched refs:heightSize (Results 1 – 9 of 9) sorted by relevance

/packages/apps/Gallery2/src/com/android/photos/views/
DGalleryThumbnailView.java129 int heightSize = MeasureSpec.getSize(heightMeasureSpec); in onMeasure() local
137 "Using fallback spec of EXACTLY " + heightSize); in onMeasure()
140 setMeasuredDimension(widthSize, heightSize); in onMeasure()
266 int heightSize = (int) (.5f + (mAdapter.getIntrinsicAspectRatio(position) >= 1f in makeAndAddColumn() local
269 int heightSpec = MeasureSpec.makeMeasureSpec(heightSize, MeasureSpec.EXACTLY); in makeAndAddColumn()
273 child.layout(childLeft, nextTop, childLeft + columnWidth, nextTop + heightSize); in makeAndAddColumn()
274 nextTop += heightSize; in makeAndAddColumn()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
DGroupedTaskView.kt67 val heightSize = MeasureSpec.getSize(heightMeasureSpec) in onMeasure() constant
68 setMeasuredDimension(widthSize, heightSize) in onMeasure()
76 heightSize, in onMeasure()
106 heightSize - container.deviceProfile.overviewTaskThumbnailTopMarginPx, in onMeasure()
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/ui/handheld/v31/
DPreferenceImageView.java59 final int heightSize = MeasureSpec.getSize(heightMeasureSpec); in onMeasure() local
62 && (maxHeight < heightSize || heightMode == MeasureSpec.UNSPECIFIED)) { in onMeasure()
/packages/apps/Settings/src/com/android/settings/widget/
DMatchParentShrinkingLinearLayout.java809 int heightSize = mTotalLength; in measureVertical() local
812 heightSize = Math.max(heightSize, getSuggestedMinimumHeight()); in measureVertical()
815 int heightSizeAndState = resolveSizeAndState(heightSize, heightMeasureSpec, 0); in measureVertical()
816 heightSize = heightSizeAndState & MEASURED_SIZE_MASK; in measureVertical()
821 int delta = heightSize - mTotalLength; in measureVertical()
/packages/modules/IntentResolver/java/src/com/android/intentresolver/widget/
DResolverDrawerLayout.java1014 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
1023 final int heightSpec = MeasureSpec.makeMeasureSpec(heightSize, MeasureSpec.EXACTLY);
1037 final int remainingHeight = heightSize - heightUsed;
1057 final int remainingHeight = heightSize - heightUsed;
1075 mTopOffset = Math.max(0, heightSize - mHeightUsed) + (int) mCollapseOffset;
1078 setMeasuredDimension(sourceWidth, heightSize);
/packages/apps/Launcher3/src/com/android/launcher3/
DPagedView.java687 int heightSize = MeasureSpec.getSize(heightMeasureSpec); in onMeasure() local
695 if (widthSize <= 0 || heightSize <= 0) { in onMeasure()
702 if (DEBUG) Log.d(TAG, "PagedView.onMeasure(): " + widthSize + ", " + heightSize); in onMeasure()
707 heightSize - mInsets.top - mInsets.bottom, MeasureSpec.EXACTLY); in onMeasure()
712 setMeasuredDimension(widthSize, heightSize); in onMeasure()
DCellLayout.java971 int heightSize = MeasureSpec.getSize(heightMeasureSpec); in onMeasure() local
973 int childHeightSize = heightSize - (getPaddingTop() + getPaddingBottom()); in onMeasure()
1006 setMeasuredDimension(widthSize, heightSize); in onMeasure()
/packages/apps/DeskClock/src/com/android/alarmclock/
DDigitalAppWidgetProvider.kt493 val heightSize: Int = View.MeasureSpec.getSize(measuredSizes.mTargetHeightPx) in <lambda>() constant
495 val heightMeasureSpec: Int = View.MeasureSpec.makeMeasureSpec(heightSize, UNSPECIFIED) in <lambda>()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
DScrollAdapterView.java1157 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
1159 int clientHeightSize = heightSize - getPaddingTop() - getPaddingBottom();
1197 heightSize = heightMode == MeasureSpec.AT_MOST ? Math.min(size, heightSize) : size;
1201 setMeasuredDimension(widthSize, heightSize);
1205 int scrollMax = (mOrientation == HORIZONTAL ? heightSize : widthSize) -