Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/widget/
DLockPatternView.java464 public void startCellStateAnimation(CellState cellState, float startAlpha, float endAlpha, in startCellStateAnimation() argument
469 startCellStateAnimationHw(cellState, startAlpha, endAlpha, startTranslationY, in startCellStateAnimation()
473 startCellStateAnimationSw(cellState, startAlpha, endAlpha, startTranslationY, in startCellStateAnimation()
479 private void startCellStateAnimationSw(final CellState cellState, in startCellStateAnimationSw() argument
484 cellState.alpha = startAlpha; in startCellStateAnimationSw()
485 cellState.translationY = startTranslationY; in startCellStateAnimationSw()
486 cellState.radius = mDotSize/2 * startScale; in startCellStateAnimationSw()
495 cellState.alpha = (1 - t) * startAlpha + t * endAlpha; in startCellStateAnimationSw()
496 cellState.translationY = (1 - t) * startTranslationY + t * endTranslationY; in startCellStateAnimationSw()
497 cellState.radius = mDotSize/2 * ((1 - t) * startScale + t * endScale); in startCellStateAnimationSw()
[all …]