Searched refs:rowsCount (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/view/animation/
H A DGridLayoutAnimationController.java308 final int rowsCount = params.rowsCount;
324 viewDelay = (long) (row * rowDelay + column * rowsCount * rowDelay);
325 totalDelay = rowsCount * rowDelay + columnsCount * rowsCount * rowDelay;
329 totalDelay = columnsCount * columnDelay + rowsCount * columnsCount * columnDelay;
334 totalDelay = columnsCount * columnDelay + rowsCount * rowDelay;
374 index = params.rowsCount - 1 - params.row;
380 index = (int) (params.rowsCount * mRandomizer.nextFloat());
390 index = params.rowsCount
422 public int rowsCount; field in class:GridLayoutAnimationController.AnimationParameters
[all...]
/frameworks/base/core/java/android/widget/
H A DGridView.java1118 animationParams.rowsCount = count / mNumColumns;
1127 animationParams.row = animationParams.rowsCount - 1 - invertedIndex / mNumColumns;
2267 final int rowsCount = getCount() / columnsCount;
2268 final CollectionInfo collectionInfo = CollectionInfo.obtain(columnsCount, rowsCount, false);
2279 final int rowsCount = count / columnsCount;
2290 row = rowsCount - 1 - invertedIndex / columnsCount;

Completed in 41 milliseconds