Home
last modified time | relevance | path

Searched refs:mDozeAmount (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DAmbientState.java84 private float mDozeAmount = 0.0f; field in AmbientState
220 return mDimmed && !(isPulseExpanding() && mDozeAmount == 1.0f); in isDimmed()
288 if (mDozeAmount == 1.0f && !isPulseExpanding()) { in getInnerHeight()
297 return (int) MathUtils.lerp(height, pulseHeight, mDozeAmount); in getInnerHeight()
301 return mPulseHeight != MAX_PULSE_HEIGHT && mDozeAmount != 0.0f && mHideAmount != 1.0f; in isPulseExpanding()
523 if (dozeAmount != mDozeAmount) { in setDozeAmount()
524 mDozeAmount = dozeAmount; in setDozeAmount()
537 return mDozeAmount == 0.0f; in isFullyAwake()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DStatusBarStateControllerImpl.java67 return object.mDozeAmount;
104 private float mDozeAmount; field in StatusBarStateControllerImpl
170 return mDozeAmount; in getDozeAmount()
175 return mDozeInterpolator.getInterpolation(mDozeAmount); in getInterpolatedDozeAmount()
214 if (mDozeAmount == 0f || mDozeAmount == 1f) { in startDozeAnimation()
226 mDozeAmount = dozeAmount; in setDozeAmountInternal()
230 rl.mListener.onDozeAmountChanged(mDozeAmount, interpolatedAmount); in setDozeAmountInternal()
DStatusBarIconView.java142 private float mDozeAmount; field in StatusBarIconView
586 int color = NotificationUtils.interpolateColors(mDecorColor, Color.WHITE, mDozeAmount); in updateDecorColor()
620 mCurrentSetColor, Color.WHITE, mDozeAmount); in updateIconColor()
621 updateTintMatrix(mMatrix, color, DARK_ALPHA_BOOST * mDozeAmount); in updateIconColor()
626 mDozer.updateGrayscale(this, mDozeAmount); in updateIconColor()
859 mDozeAmount = f; in setDozing()
867 if (mDozeAmount == 0 || mDozeAmount == 1) { in updateAllowAnimation()
868 setAllowAnimation(mDozeAmount == 0); in updateAllowAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationWakeUpCoordinator.kt62 private var mDozeAmount: Float = 0.0f variable in com.android.systemui.statusbar.notification.NotificationWakeUpCoordinator
98 if (!value || mDozeAmount != 0.0f) {
208 if (!visible && mNotificationsVisible && (wakingUp || willWakeUp) && mDozeAmount != 0.0f) { in updateNotificationVisibility()
246 mDozeAmount = eased in setDozeAmount()
247 mStackScroller.setDozeAmount(mDozeAmount) in setDozeAmount()
333 val amount = Math.min(1.0f - mVisibilityAmount, mDozeAmount) in updateHideAmount()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DLightBarTransitionsController.java62 private float mDozeAmount; field in LightBarTransitionsController
81 mDozeAmount = mStatusBarStateController.getDozeAmount(); in LightBarTransitionsController()
199 mApplier.applyDarkIntensity(MathUtils.lerp(mDarkIntensity, 0f, mDozeAmount)); in dispatchDark()
227 mDozeAmount = eased; in onDozeAmountChanged()
DLockIcon.java100 private float mDozeAmount; field in LockIcon
527 mDozeAmount = eased; in onDozeAmountChanged()
550 int color = ColorUtils.blendARGB(mIconColor, Color.WHITE, mDozeAmount); in updateDarkTint()