Searched refs:mCellHeight (Results 1 – 3 of 3) sorted by relevance
37 protected int mCellHeight; field in TileLayout182 mCellHeight = record.tileView.getMeasuredHeight(); in onMeasure()185 int height = (mCellHeight + mCellMarginVertical) * mRows; in onMeasure()285 return (int) (row * (mCellHeight * scale + mCellMarginVertical)); in getRowTop()
152 private int mCellHeight; field in Keyboard752 mCellHeight = (getHeight() + GRID_HEIGHT - 1) / GRID_HEIGHT; in computeNearestNeighbors()756 final int gridHeight = GRID_HEIGHT * mCellHeight; in computeNearestNeighbors()758 for (int y = 0; y < gridHeight; y += mCellHeight) { in computeNearestNeighbors()764 key.squaredDistanceFrom(x + mCellWidth - 1, y + mCellHeight - 1) in computeNearestNeighbors()766 key.squaredDistanceFrom(x, y + mCellHeight - 1) < mProximityThreshold) { in computeNearestNeighbors()772 mGridNeighbors[(y / mCellHeight) * GRID_WIDTH + (x / mCellWidth)] = cell; in computeNearestNeighbors()787 int index = (y / mCellHeight) * GRID_WIDTH + (x / mCellWidth); in getNearestKeys()
22620 Landroid/inputmethodservice/Keyboard;->mCellHeight:I