Searched refs:rowIndex (Results 1 – 9 of 9) sorted by relevance
56 for (int rowIndex = 0; rowIndex < rows.length; rowIndex++) { in AbstractKeyboardBuilder()57 final E[] row = rows[rowIndex]; in AbstractKeyboardBuilder()58 mRows[rowIndex] = Arrays.copyOf(row, row.length); in AbstractKeyboardBuilder()85 final int rowIndex = row - 1; in getRowAt() local86 if (rowIndex < 0 || rowIndex >= mRows.length) { in getRowAt()89 return mRows[rowIndex]; in getRowAt()99 final int rowIndex = row - 1; in setRowAt() local100 if (rowIndex < 0) { in setRowAt()103 final E[][] newRows = (rowIndex < mRows.length) ? mRows in setRowAt()104 : Arrays.copyOf(mRows, rowIndex + 1); in setRowAt()[all …]
76 for (int rowIndex = 0; rowIndex < dimensions.length; rowIndex++) { in buildKeyboard()77 dimensions[rowIndex] = rows.get(rowIndex).size(); in buildKeyboard()81 for (int rowIndex = 0; rowIndex < rows.size(); rowIndex++) { in buildKeyboard()82 final int row = rowIndex + 1; in buildKeyboard()83 final ArrayList<Key> rowKeys = rows.get(rowIndex); in buildKeyboard()
337 for (int rowIndex = 0; rowIndex < rows.length; rowIndex++) { in toString()338 if (rowIndex > 0) { in toString()341 sb.append(Arrays.toString(rows[rowIndex])); in toString()
338 int rowIndex = -1; in refillAdapterItems() local340 item.rowIndex = 0; in refillAdapterItems()346 rowIndex++; in refillAdapterItems()348 item.rowIndex = rowIndex; in refillAdapterItems()354 mNumAppRowsInAdapter = rowIndex + 1; in refillAdapterItems()368 info.touchFraction = item.rowIndex * rowFraction + subRowFraction; in refillAdapterItems()
383 posItem.rowIndex == item.rowIndex) { in getCurrentScrollY()
103 public int rowIndex; field in AllAppsGridAdapter.AdapterItem
147 int rowIndex = -1; in getCurrentScrollY() local155 rowIndex = ((LinearLayoutManager) layoutManager).findFirstVisibleItemPosition(); in getCurrentScrollY()156 child = layoutManager.findViewByPosition(rowIndex); in getCurrentScrollY()163 rowIndex = getChildPosition(child); in getCurrentScrollY()179 int scrollPosition = getItemsHeight(rowIndex); in getCurrentScrollY()
308 int rowIndex = mNumRows - 1 - i; in updateViewsLayout() local316 mRowsContainer.getChildAt(rowIndex).setTranslationX( in updateViewsLayout()319 mRowsContainer.getChildAt(rowIndex).setTranslationX(0); in updateViewsLayout()
56 final String log = ContextualCardLogUtils.buildCardClickLog(card, eventInfo.rowIndex, in bindView()