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.java317 float totalDelay; in getDelayForView() local
327 totalDelay = rowsCount * rowDelay + columnsCount * rowsCount * rowDelay; in getDelayForView()
331 totalDelay = columnsCount * columnDelay + rowsCount * columnsCount * columnDelay; in getDelayForView()
336 totalDelay = columnsCount * columnDelay + rowsCount * rowDelay; in getDelayForView()
340 float normalizedDelay = viewDelay / totalDelay; in getDelayForView()
343 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/services/core/java/com/android/server/am/
DUserController.java2453 long totalDelay = SystemClock.elapsedRealtime()
2455 if (totalDelay > userSwitchTimeoutMs) {
2457 + "'s result was received " + totalDelay
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java5409 int totalDelay = 0; in clearNotifications() local
5417 dismissViewAnimated(view, endRunnable, totalDelay, ANIMATION_DURATION_SWIPE); in clearNotifications()
5419 totalDelay += currentDelay; in clearNotifications()