Searched refs:mCellHeight (Results 1 – 3 of 3) sorted by relevance
28 protected int mCellHeight; field in TileLayout166 mCellHeight = record.tileView.getMeasuredHeight(); in onMeasure()169 int height = (mCellHeight + mCellMarginVertical) * mRows; in onMeasure()241 return row * (mCellHeight + mCellMarginVertical); in getRowTop()
152 private int mCellHeight; field in Keyboard751 mCellHeight = (getHeight() + GRID_HEIGHT - 1) / GRID_HEIGHT; in computeNearestNeighbors()755 final int gridHeight = GRID_HEIGHT * mCellHeight; in computeNearestNeighbors()757 for (int y = 0; y < gridHeight; y += mCellHeight) { in computeNearestNeighbors()763 key.squaredDistanceFrom(x + mCellWidth - 1, y + mCellHeight - 1) in computeNearestNeighbors()765 key.squaredDistanceFrom(x, y + mCellHeight - 1) < mProximityThreshold) { in computeNearestNeighbors()771 mGridNeighbors[(y / mCellHeight) * GRID_WIDTH + (x / mCellWidth)] = cell; in computeNearestNeighbors()786 int index = (y / mCellHeight) * GRID_WIDTH + (x / mCellWidth); in getNearestKeys()
25498 Landroid/inputmethodservice/Keyboard;->mCellHeight:I