Home | History | Annotate | Download | only in widget

Lines Matching defs:columnsCount

1145         animationParams.columnsCount = mNumColumns;
2356 final int columnsCount = getNumColumns();
2357 final int rowsCount = getCount() / columnsCount;
2360 rowsCount, columnsCount, false, selectionMode);
2363 if (columnsCount > 0 || rowsCount > 0) {
2400 final int columnsCount = getNumColumns();
2401 final int rowsCount = count / columnsCount;
2406 column = position % columnsCount;
2407 row = position / columnsCount;
2411 column = columnsCount - 1 - (invertedIndex % columnsCount);
2412 row = rowsCount - 1 - invertedIndex / columnsCount;