HomeSort by relevance Sort by last modified time
    Searched refs:totalDelay (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/android/view/animation/
GridLayoutAnimationController.java 315 float totalDelay;
325 totalDelay = rowsCount * rowDelay + columnsCount * rowsCount * rowDelay;
329 totalDelay = columnsCount * columnDelay + rowsCount * columnsCount * columnDelay;
334 totalDelay = columnsCount * columnDelay + rowsCount * rowDelay;
338 float normalizedDelay = viewDelay / totalDelay;
341 return (long) (normalizedDelay * totalDelay);
LayoutAnimationController.java 378 final float totalDelay = delay * params.count;
384 float normalizedDelay = viewDelay / totalDelay;
387 return (long) (normalizedDelay * totalDelay);
  /frameworks/base/services/java/com/android/server/
PowerManagerService.java     [all...]

Completed in 40 milliseconds