HomeSort by relevance Sort by last modified time
    Searched refs:mDarkAmount (Results 1 - 9 of 9) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
KeyguardClockPositionAlgorithm.java 103 private float mDarkAmount;
146 mDarkAmount = dark;
157 result.clockX = (int) interpolate(0, burnInPreventionOffsetX(), mDarkAmount);
208 return (int) MathUtils.lerp(clockY, clockYDark, mDarkAmount);
227 return MathUtils.lerp(alphaKeyguard, 1f, mDarkAmount);
KeyguardBottomAreaView.java 173 private float mDarkAmount;
559 if (darkAmount == mDarkAmount) {
562 mDarkAmount = darkAmount;
    [all...]
NotificationPanelView.java 110 new FloatProperty<NotificationPanelView>("mDarkAmount") {
118 return object.mDarkAmount;
239 private float mDarkAmount;
394 setDarkAmount(mDarkAmount);
508 mDarkAmount,
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
KeyguardStatusView.java 76 private float mDarkAmount = 0;
262 boolean isAwake = mDarkAmount != 0;
410 if (mDarkAmount == darkAmount) {
413 mDarkAmount = darkAmount;
418 boolean dark = mDarkAmount == 1;
429 final int blendedTextColor = ColorUtils.blendARGB(mTextColor, Color.WHITE, mDarkAmount);
431 mKeyguardSlice.setDarkAmount(mDarkAmount);
439 mOwnerInfo.setAlpha(1f - mDarkAmount);
441 float ratio = mDarkAmount;
458 child.setAlpha(mDarkAmount == 1 && mPulsing ? 0.8f : 1)
    [all...]