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.java377 float currentDotSizeFactor; field in PasswordTextView.CharState
439 currentDotSizeFactor = (float) animation.getAnimatedValue();
494 currentDotSizeFactor = 0.0f; in reset()
507 boolean dotNeedsAnimation = (currentDotSizeFactor > 0.0f && dotAnimator == null) in startRemoveAnimation()
602 ValueAnimator animator = ValueAnimator.ofFloat(currentDotSizeFactor, 0.0f); in startDotDisappearAnimation()
606 long duration = (long) (DISAPPEAR_DURATION * Math.min(currentDotSizeFactor, 1.0f)); in startDotDisappearAnimation()
649 ValueAnimator overShootAnimator = ValueAnimator.ofFloat(currentDotSizeFactor, in startDotAppearAnimation()
667 ValueAnimator growAnimator = ValueAnimator.ofFloat(currentDotSizeFactor, 1.0f); in startDotAppearAnimation()
669 growAnimator.setDuration((long) (APPEAR_DURATION * (1.0f - currentDotSizeFactor))); in startDotAppearAnimation()
692 boolean dotVisible = currentDotSizeFactor > 0; in draw()
[all …]