Searched refs:mCellHeight (Results 1 – 4 of 4) sorted by relevance
23 protected int mCellHeight; field in TileLayout86 mCellHeight = mContext.getResources().getDimensionPixelSize(R.dimen.qs_tile_height); in updateResources()119 record.tileView.measure(exactly(mCellWidth), exactly(mCellHeight)); in onMeasure()125 int height = (mCellHeight + mCellMarginVertical) * mRows + in onMeasure()143 mRows = availableHeight / (mCellHeight + mCellMarginVertical); in updateMaxRows()193 return row * (mCellHeight + mCellMarginVertical) + mCellMarginTop; in getRowTop()
216 LayoutParams lp = new LayoutParams(mCellWidth, mCellHeight); in generateTileLayoutParams()244 mCellHeight = mCellWidth;291 record.tileView.measure(exactly(mCellWidth), exactly(mCellHeight)); in onMeasure()294 int height = mCellHeight; in onMeasure()
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()
32749 Landroid/inputmethodservice/Keyboard;->mCellHeight:I