Home
last modified time | relevance | path

Searched refs:totalDelay (Results 1 – 4 of 4) 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/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java5605 int totalDelay = 180;
5613 dismissViewAnimated(view, endRunnable, totalDelay, ANIMATION_DURATION_SWIPE);
5615 totalDelay += currentDelay;