Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/animation/
DGridLayoutAnimationController.java315 float totalDelay; in getDelayForView() local
325 totalDelay = rowsCount * rowDelay + columnsCount * rowsCount * rowDelay; in getDelayForView()
329 totalDelay = columnsCount * columnDelay + rowsCount * columnsCount * columnDelay; in getDelayForView()
334 totalDelay = columnsCount * columnDelay + rowsCount * rowDelay; in getDelayForView()
338 float normalizedDelay = viewDelay / totalDelay; in getDelayForView()
341 return (long) (normalizedDelay * totalDelay); in getDelayForView()
DLayoutAnimationController.java380 final float totalDelay = delay * params.count; in getDelayForView() local
386 float normalizedDelay = viewDelay / totalDelay; in getDelayForView()
389 return (long) (normalizedDelay * totalDelay); in getDelayForView()
/frameworks/base/core/java/com/android/internal/widget/
DDefaultItemAnimator.java183 long totalDelay = removeDuration + Math.max(moveDuration, changeDuration); in runPendingAnimations() local
185 view.postOnAnimationDelayed(adder, totalDelay); in runPendingAnimations()
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
DDefaultItemAnimator.java182 long totalDelay = removeDuration + Math.max(moveDuration, changeDuration); in runPendingAnimations() local
184 ViewCompat.postOnAnimationDelayed(view, adder, totalDelay); in runPendingAnimations()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBar.java1296 int totalDelay = 180; in performDismissAllAnimations() local
1304 mStackScroller.dismissViewAnimated(view, endRunnable, totalDelay, 260); in performDismissAllAnimations()
1306 totalDelay += currentDelay; in performDismissAllAnimations()