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.java119 private float mDozeAmount = 0.0f; field in AmbientState
454 if (mDozeAmount == 1.0f && !isPulseExpanding()) { in getInnerHeight()
463 return (int) MathUtils.lerp(height, pulseHeight, mDozeAmount); in getInnerHeight()
467 return mPulseHeight != MAX_PULSE_HEIGHT && mDozeAmount != 0.0f && mHideAmount != 1.0f; in isPulseExpanding()
669 if (dozeAmount != mDozeAmount) { in setDozeAmount()
670 mDozeAmount = dozeAmount; in setDozeAmount()
679 return mDozeAmount; in getDozeAmount()
687 return mDozeAmount == 0.0f; in isFullyAwake()
772 pw.println("mDozeAmount=" + mDozeAmount); in dump()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DStatusBarStateControllerImpl.java105 return object.mDozeAmount;
164 private float mDozeAmount; field in StatusBarStateControllerImpl
325 return mDozeAmount; in getDozeAmount()
335 return mDozeInterpolator.getInterpolation(mDozeAmount); in getInterpolatedDozeAmount()
423 if (mDozeAmount == 0f || mDozeAmount == 1f) { in startDozeAnimation()
428 if (mDozeAmount == 1f && !mIsDozing) { in startDozeAnimation()
466 if (Float.compare(dozeAmount, mDozeAmount) == 0) { in setDozeAmountInternal()
469 mDozeAmount = dozeAmount; in setDozeAmountInternal()
475 rl.mListener.onDozeAmountChanged(mDozeAmount, interpolatedAmount); in setDozeAmountInternal()
497 (mIsDozing && mDozeAmount == 0) || (!mIsDozing && mDozeAmount == 1); in beginInteractionJankMonitor()
DStatusBarIconView.java191 private float mDozeAmount; field in StatusBarIconView
715 int color = NotificationUtils.interpolateColors(mDecorColor, Color.WHITE, mDozeAmount); in updateDecorColor()
753 mCurrentSetColor, Color.WHITE, mDozeAmount); in updateIconColor()
754 updateTintMatrix(mMatrix, color, DARK_ALPHA_BOOST * mDozeAmount); in updateIconColor()
759 mDozer.updateGrayscale(this, mDozeAmount); in updateIconColor()
990 mDozeAmount = dozeAmount; in setDozeAmount()
1005 if (mDozeAmount == 0 || mDozeAmount == 1) { in updateAllowAnimation()
1006 setAllowAnimation(mDozeAmount == 0); in updateAllowAnimation()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DLockIconView.java69 private float mDozeAmount = 0f; field in LockIconView
81 mDozeAmount = dozeAmount; in setDozeAmount()
90 mDozeAmount); in updateColorAndBackgroundVisibility()
94 mBgView.setAlpha(1f - mDozeAmount); in updateColorAndBackgroundVisibility()
100 mDozeAmount); in updateColorAndBackgroundVisibility()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DLightBarTransitionsController.java114 private float mDozeAmount; field in LightBarTransitionsController
141 mDozeAmount = mStatusBarStateController.getDozeAmount(); in LightBarTransitionsController()
267 mApplier.applyDarkIntensity(MathUtils.lerp(mDarkIntensity, 0f, mDozeAmount)); in dispatchDark()
271 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()