Searched defs:rowCount (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Launcher3/src/com/android/launcher3/
H A DBaseRecyclerView.java191 protected int getAvailableScrollHeight(int rowCount, int rowHeight, int yOffset) { argument
193 int scrollHeight = getPaddingTop() + yOffset + rowCount * rowHeight + getPaddingBottom();
235 * @param rowCount the number of rows, used to calculate the total scroll height (assumes that
240 int rowCount, int yOffset) {
241 int availableScrollHeight = getAvailableScrollHeight(rowCount, scrollPosState.rowHeight,
239 synchronizeScrollBarThumbOffsetToViewScroll(ScrollPositionState scrollPosState, int rowCount, int yOffset) argument
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DMoreKeysKeyboard.java253 private boolean isTopRow(final int rowCount) { argument
254 return mNumRows > 1 && rowCount == mNumRows - 1;

Completed in 56 milliseconds