Searched refs:mDozeAmount (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | AmbientState.java | 83 private float mDozeAmount = 0.0f; field in AmbientState 221 return mDimmed && !(isPulseExpanding() && mDozeAmount == 1.0f); in isDimmed() 289 if (mDozeAmount == 1.0f && !isPulseExpanding()) { in getInnerHeight() 298 return (int) MathUtils.lerp(height, pulseHeight, mDozeAmount); in getInnerHeight() 302 return mPulseHeight != MAX_PULSE_HEIGHT && mDozeAmount != 0.0f && mHideAmount != 1.0f; in isPulseExpanding() 524 if (dozeAmount != mDozeAmount) { in setDozeAmount() 525 mDozeAmount = dozeAmount; in setDozeAmount() 538 return mDozeAmount == 0.0f; in isFullyAwake()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | StatusBarStateControllerImpl.java | 68 return object.mDozeAmount; 111 private float mDozeAmount; field in StatusBarStateControllerImpl 187 return mDozeAmount; in getDozeAmount() 192 return mDozeInterpolator.getInterpolation(mDozeAmount); in getInterpolatedDozeAmount() 234 if (mDozeAmount == 0f || mDozeAmount == 1f) { in startDozeAnimation() 246 mDozeAmount = dozeAmount; in setDozeAmountInternal() 252 rl.mListener.onDozeAmountChanged(mDozeAmount, interpolatedAmount); in setDozeAmountInternal()
|
D | StatusBarIconView.java | 142 private float mDozeAmount; field in StatusBarIconView 588 int color = NotificationUtils.interpolateColors(mDecorColor, Color.WHITE, mDozeAmount); in updateDecorColor() 627 mCurrentSetColor, Color.WHITE, mDozeAmount); in updateIconColor() 628 updateTintMatrix(mMatrix, color, DARK_ALPHA_BOOST * mDozeAmount); in updateIconColor() 633 mDozer.updateGrayscale(this, mDozeAmount); in updateIconColor() 866 mDozeAmount = f; in setDozing() 874 if (mDozeAmount == 0 || mDozeAmount == 1) { in updateAllowAnimation() 875 setAllowAnimation(mDozeAmount == 0); in updateAllowAnimation()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | NotificationWakeUpCoordinator.kt | 60 private var mDozeAmount: Float = 0.0f variable in com.android.systemui.statusbar.notification.NotificationWakeUpCoordinator 95 if (!value || mDozeAmount != 0.0f) { 210 if (!visible && mNotificationsVisible && (wakingUp || willWakeUp) && mDozeAmount != 0.0f) { in updateNotificationVisibility() 251 mDozeAmount = eased in setDozeAmount() 252 mStackScroller.setDozeAmount(mDozeAmount) in setDozeAmount() 338 val amount = Math.min(1.0f - mVisibilityAmount, mDozeAmount) in updateHideAmount()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | LightBarTransitionsController.java | 62 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()
|
D | LockIcon.java | 51 private float mDozeAmount; field in LockIcon 150 mDozeAmount = dozeAmount; in setDozeAmount() 161 int color = ColorUtils.blendARGB(mIconColor, Color.WHITE, mDozeAmount); in updateDarkTint()
|