Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DPasswordTextView.java348 float currentDotSizeFactor; field in PasswordTextView.CharState
410 currentDotSizeFactor = (float) animation.getAnimatedValue();
453 currentDotSizeFactor = 0.0f; in reset()
466 boolean dotNeedsAnimation = (currentDotSizeFactor > 0.0f && dotAnimator == null) in startRemoveAnimation()
561 ValueAnimator animator = ValueAnimator.ofFloat(currentDotSizeFactor, 0.0f); in startDotDisappearAnimation()
565 long duration = (long) (DISAPPEAR_DURATION * Math.min(currentDotSizeFactor, 1.0f)); in startDotDisappearAnimation()
608 ValueAnimator overShootAnimator = ValueAnimator.ofFloat(currentDotSizeFactor, in startDotAppearAnimation()
626 ValueAnimator growAnimator = ValueAnimator.ofFloat(currentDotSizeFactor, 1.0f); in startDotAppearAnimation()
628 growAnimator.setDuration((long) (APPEAR_DURATION * (1.0f - currentDotSizeFactor))); in startDotAppearAnimation()
651 boolean dotVisible = currentDotSizeFactor > 0; in draw()
[all …]