Home
last modified time | relevance | path

Searched refs:measuredHeight (Results 1 – 25 of 42) sorted by relevance

12

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/ui/
H A DMediaHostStatesManager.kt80 if (it.measuredHeight > result.measuredHeight) {
81 result.measuredHeight = it.measuredHeight
H A DMediaViewController.kt512 measurement.measuredHeight = viewState.measureHeight
622 result.measureHeight != it.measuredHeight || result.measureWidth != it.measuredWidth
624 result.measureHeight = Math.max(it.measuredHeight, result.measureHeight)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
H A DIgnorableChildLinearLayout.kt64 val height = lastView.measuredHeight + lp.bottomMargin + lp.topMargin
65 setMeasuredDimension(measuredWidth, measuredHeight - height)
68 setMeasuredDimension(measuredWidth - width, measuredHeight)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ongoingcall/
H A DOngoingCallBackgroundContainerTest.kt56 assertThat(underTest.measuredHeight).isEqualTo(123)
68 assertThat(underTest.measuredHeight).isEqualTo(123)
81 assertThat(underTest.measuredHeight).isEqualTo(233)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/
H A DOngoingCallBackgroundContainer.kt41 measuredHeight.coerceAtMost(maxHeight - 1)
43 measuredHeight
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/util/animation/
H A DTransitionLayout.kt151 child.measuredHeight != widgetState.measureHeight) {
157 child.layout(0, 0, child.measuredWidth, child.measuredHeight)
219 child.layout(0, 0, child.measuredWidth, child.measuredHeight)
258 val previousHeight = measuredHeight
266 layout(layoutLeft, layoutTop, layoutLeft + measuredWidth, layoutTop + measuredHeight)
371 height = transitionLayout.measuredHeight
H A DMeasurementInput.kt26 var measuredHeight: Int
H A DUniqueObjectHostView.kt93 top + measuredHeight - paddingVertical)
/aosp14/frameworks/base/core/java/android/app/
H A DMediaRouteButton.java304 int measuredHeight; in onMeasure() local
307 measuredHeight = heightSize; in onMeasure()
310 measuredHeight = Math.min(heightSize, height); in onMeasure()
314 measuredHeight = height; in onMeasure()
318 setMeasuredDimension(measuredWidth, measuredHeight); in onMeasure()
/aosp14/frameworks/base/tests/UiBench/src/com/android/test/uibench/
H A DNotificationShadeActivity.java135 int measuredHeight = child.getMeasuredHeight(); in updateState() local
136 child.setTag(measuredHeight); in updateState()
137 mFullHeight += measuredHeight; in updateState()
/aosp14/frameworks/base/core/java/com/android/internal/widget/
H A DMessagingImageMessage.java217 int measuredHeight = getMeasuredHeight(); in getMeasuredType() local
224 boolean measuredTooSmall = measuredHeight < minImageHeight in getMeasuredType()
225 && measuredHeight != mDrawable.getIntrinsicHeight(); in getMeasuredType()
229 if (!mIsIsolated && measuredHeight != mDrawable.getIntrinsicHeight()) { in getMeasuredType()
H A DActionBarContextView.java368 int measuredHeight = 0; in onMeasure() local
373 if (paddedViewHeight > measuredHeight) { in onMeasure()
374 measuredHeight = paddedViewHeight; in onMeasure()
377 setMeasuredDimension(contentWidth, measuredHeight); in onMeasure()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardBottomAreaView.kt159 ambientTop + it.measuredHeight
166 lockLocationTop.toInt() - it.measuredHeight,
H A DNotificationIconContainer.java252 final int measuredHeight = MeasureSpec.getSize(heightMeasureSpec); in onMeasure() local
253 setMeasuredDimension(measuredWidth, measuredHeight); in onMeasure()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/log/
H A DScreenDecorationsLogger.kt102 measuredHeight: Int
111 int2 = measuredHeight
/aosp14/frameworks/base/packages/SettingsLib/Spa/screenshot/src/com/android/settingslib/spa/screenshot/util/
H A DBitmap.kt33 measuredHeight,
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/util/
H A DNoRemeasureMotionLayout.kt47 setMeasuredDimension(measuredWidth, measuredHeight)
H A DNeverExactlyLinearLayout.kt40 val newHeight = if (heightExactly) height else measuredHeight
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DFaceScanningOverlay.kt201 val measuredHeight = resolveSizeAndState(mTotalBounds.height(), heightMeasureSpec, 0) regex
208 measuredHeight)
209 setMeasuredDimension(measuredWidth, measuredHeight)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/
H A DQSPanelTest.kt127 qsPanel.layout(0, 0, qsPanel.measuredWidth, qsPanel.measuredHeight)
157 qsPanel.layout(0, 0, qsPanel.measuredWidth, qsPanel.measuredHeight)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/preview/
H A DKeyguardPreviewRenderer.kt207 rootView.layout(0, 0, rootView.measuredWidth, rootView.measuredHeight)
212 height / rootView.measuredHeight.toFloat()
226 host.setView(rootView, rootView.measuredWidth, rootView.measuredHeight)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/events/
H A DSystemEventChipAnimationController.kt290 val chipTop = (contentArea.bottom - chip.view.measuredHeight) / 2
291 val chipBottom = chipTop + chip.view.measuredHeight
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/mediaprojection/appselector/view/
H A DMediaProjectionTaskView.kt165 measuredHeight,
/aosp14/frameworks/base/core/java/android/widget/
H A DStackView.java1142 final int measuredHeight = getMeasuredHeight();
1146 final int childHeight = Math.round(measuredHeight*(1-PERSPECTIVE_SHIFT_FACTOR_Y))
1170 mNewPerspectiveShiftY = PERSPECTIVE_SHIFT_FACTOR_Y * measuredHeight;
1178 mNewPerspectiveShiftY = measuredHeight - maxHeight;
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ui/binder/
H A DBiometricViewSizeBinder.kt108 val height = view.measuredHeight

12