Searched refs:currentDotSizeFactor (Results 1 – 1 of 1) sorted by relevance
336 float currentDotSizeFactor; field in PasswordTextView.CharState397 currentDotSizeFactor = (float) animation.getAnimatedValue();451 (currentDotSizeFactor > 0.0f && dotAnimator == null) || (dotAnimator != null in startRemoveAnimation()548 ValueAnimator animator = ValueAnimator.ofFloat(currentDotSizeFactor, 0.0f); in startDotDisappearAnimation()552 long duration = (long) (DISAPPEAR_DURATION * Math.min(currentDotSizeFactor, 1.0f)); in startDotDisappearAnimation()595 ValueAnimator overShootAnimator = ValueAnimator.ofFloat(currentDotSizeFactor, in startDotAppearAnimation()613 ValueAnimator growAnimator = ValueAnimator.ofFloat(currentDotSizeFactor, 1.0f); in startDotAppearAnimation()615 growAnimator.setDuration((long) (APPEAR_DURATION * (1.0f - currentDotSizeFactor))); in startDotAppearAnimation()638 boolean dotVisible = currentDotSizeFactor > 0; in draw()654 canvas.drawCircle(0, 0, mDotSize / 2 * currentDotSizeFactor, mDrawPaint); in draw()