Home
last modified time | relevance | path

Searched refs:dozeAmount (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DStatusBarStateControllerImpl.java196 public void setDozeAmount(float dozeAmount, boolean animated) { in setDozeAmount() argument
198 if (animated && mDozeAmountTarget == dozeAmount) { in setDozeAmount()
205 mDozeAmountTarget = dozeAmount; in setDozeAmount()
209 setDozeAmountInternal(dozeAmount); in setDozeAmount()
225 private void setDozeAmountInternal(float dozeAmount) { in setDozeAmountInternal() argument
226 mDozeAmount = dozeAmount; in setDozeAmountInternal()
227 float interpolatedAmount = mDozeInterpolator.getInterpolation(dozeAmount); in setDozeAmountInternal()
DSysuiStatusBarStateController.java76 void setDozeAmount(float dozeAmount, boolean animated); in setDozeAmount() argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DAmbientState.java522 public void setDozeAmount(float dozeAmount) { in setDozeAmount() argument
523 if (dozeAmount != mDozeAmount) { in setDozeAmount()
524 mDozeAmount = dozeAmount; in setDozeAmount()
525 if (dozeAmount == 0.0f || dozeAmount == 1.0f) { in setDozeAmount()
DNotificationStackScrollLayout.java5678 public void setDozeAmount(float dozeAmount) {
5679 mAmbientState.setDozeAmount(dozeAmount);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNotificationPanelView.java3273 final float dozeAmount = dozing ? 1 : 0; in setDozing() local
3274 mStatusBarStateController.setDozeAmount(dozeAmount, animate); in setDozing()