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.java501 public void startCellStateAnimation(CellState cellState, float startAlpha, float endAlpha, in startCellStateAnimation() argument
506 startCellStateAnimationHw(cellState, startAlpha, endAlpha, startTranslationY, in startCellStateAnimation()
510 startCellStateAnimationSw(cellState, startAlpha, endAlpha, startTranslationY, in startCellStateAnimation()
516 private void startCellStateAnimationSw(final CellState cellState, in startCellStateAnimationSw() argument
521 cellState.alpha = startAlpha; in startCellStateAnimationSw()
522 cellState.translationY = startTranslationY; in startCellStateAnimationSw()
523 cellState.radius = mDotSize/2 * startScale; in startCellStateAnimationSw()
532 cellState.alpha = (1 - t) * startAlpha + t * endAlpha; in startCellStateAnimationSw()
533 cellState.translationY = (1 - t) * startTranslationY + t * endTranslationY; in startCellStateAnimationSw()
534 cellState.radius = mDotSize/2 * ((1 - t) * startScale + t * endScale); in startCellStateAnimationSw()
[all …]