Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DAnimatableClockController.java55 private float mDozeAmount; field in AnimatableClockController
74 mDozeAmount = mStatusBarStateController.getDozeAmount(); in AnimatableClockController()
113 boolean noAnimation = (mDozeAmount == 0f && linear == 1f)
114 || (mDozeAmount == 1f && linear == 0f);
115 boolean isDozing = linear > mDozeAmount;
116 mDozeAmount = linear;
146 mDozeAmount = mStatusBarStateController.getDozeAmount(); in onViewAttached()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DAmbientState.java80 private float mDozeAmount = 0.0f; field in AmbientState
281 return mDimmed && !(isPulseExpanding() && mDozeAmount == 1.0f); in isDimmed()
348 if (mDozeAmount == 1.0f && !isPulseExpanding()) { in getInnerHeight()
357 return (int) MathUtils.lerp(height, pulseHeight, mDozeAmount); in getInnerHeight()
361 return mPulseHeight != MAX_PULSE_HEIGHT && mDozeAmount != 0.0f && mHideAmount != 1.0f; in isPulseExpanding()
568 if (dozeAmount != mDozeAmount) { in setDozeAmount()
569 mDozeAmount = dozeAmount; in setDozeAmount()
582 return mDozeAmount == 0.0f; in isFullyAwake()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DStatusBarStateControllerImpl.java77 return object.mDozeAmount;
123 private float mDozeAmount; field in StatusBarStateControllerImpl
210 return mDozeAmount; in getDozeAmount()
235 return mDozeInterpolator.getInterpolation(mDozeAmount); in getInterpolatedDozeAmount()
287 if (mDozeAmount == 0f || mDozeAmount == 1f) { in startDozeAnimation()
315 mDozeAmount = dozeAmount; in setDozeAmountInternal()
321 rl.mListener.onDozeAmountChanged(mDozeAmount, interpolatedAmount); in setDozeAmountInternal()
DStatusBarIconView.java153 private float mDozeAmount; field in StatusBarIconView
622 int color = NotificationUtils.interpolateColors(mDecorColor, Color.WHITE, mDozeAmount); in updateDecorColor()
661 mCurrentSetColor, Color.WHITE, mDozeAmount); in updateIconColor()
662 updateTintMatrix(mMatrix, color, DARK_ALPHA_BOOST * mDozeAmount); in updateIconColor()
667 mDozer.updateGrayscale(this, mDozeAmount); in updateIconColor()
900 mDozeAmount = f; in setDozing()
908 if (mDozeAmount == 0 || mDozeAmount == 1) { in updateAllowAnimation()
909 setAllowAnimation(mDozeAmount == 0); in updateAllowAnimation()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationWakeUpCoordinator.kt61 private var mDozeAmount: Float = 0.0f variable in com.android.systemui.statusbar.notification.NotificationWakeUpCoordinator
96 if (!value || mDozeAmount != 0.0f) {
210 if (!visible && mNotificationsVisible && (wakingUp || willWakeUp) && mDozeAmount != 0.0f) { in updateNotificationVisibility()
256 mDozeAmount = eased in setDozeAmount()
257 mStackScrollerController.setDozeAmount(mDozeAmount) in setDozeAmount()
379 val amount = 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
82 mDozeAmount = mStatusBarStateController.getDozeAmount(); in LightBarTransitionsController()
200 mApplier.applyDarkIntensity(MathUtils.lerp(mDarkIntensity, 0f, mDozeAmount)); in dispatchDark()
228 mDozeAmount = eased; in onDozeAmountChanged()
DLockIcon.java51 private float mDozeAmount; field in LockIcon
148 mDozeAmount = dozeAmount; in setDozeAmount()
162 int color = ColorUtils.blendARGB(mIconColor, Color.WHITE, mDozeAmount); in updateDarkTint()