Searched refs:mRows (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/hardware/camera2/params/ |
D | LensShadingMap.java | 63 mRows = checkArgumentPositive(rows, "rows must be positive"); in LensShadingMap() 80 return mRows; in getRowCount() 97 return mRows * mColumns * COUNT; in getGainFactorCount() 132 } else if (row < 0 || row >= mRows) { in getGainFactor() 158 } else if (row < 0 || row >= mRows) { in getGainFactorVector() 224 return mRows == other.mRows in equals() 237 return HashCodeHelpers.hashCode(mRows, mColumns, elemsHash); in hashCode() 261 for (int r = 0; r < mRows; r++) { in toString() 271 if (r < mRows - 1) { in toString() 286 private final int mRows; field in LensShadingMap
|
/frameworks/base/core/java/android/text/ |
D | PackedObjectVector.java | 27 private int mRows; field in PackedObjectVector 39 mRows = 0; in PackedObjectVector() 42 mRowGapLength = mRows; in PackedObjectVector() 102 return mRows - mRowGapLength; in size() 117 int after = mRows - (mRowGapStart + mRowGapLength); in growBuffer() 120 …System.arraycopy(mValues, (mRows - after) * mColumns, newvalues, (newsize - after) * mColumns, aft… in growBuffer() 122 mRowGapLength += newsize - mRows; in growBuffer() 123 mRows = newsize; in growBuffer() 172 for (int i = 0; i < mRows; i++) in dump()
|
D | PackedIntVector.java | 34 private int mRows; field in PackedIntVector 50 mRows = 0; in PackedIntVector() 53 mRowGapLength = mRows; in PackedIntVector() 241 return mRows - mRowGapLength; in size() 267 int after = mRows - (rowgapstart + mRowGapLength); in growBuffer() 271 System.arraycopy(mValues, (mRows - after) * columns, in growBuffer() 278 valuegap[i] += newsize - mRows; in growBuffer() 286 mRowGapLength += newsize - mRows; in growBuffer() 287 mRows = newsize; in growBuffer()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | DessertCaseView.java | 131 private int mRows, mColumns; field in DessertCaseView 252 mRows = mHeight / mCellSize; in onSizeChanged() 255 mCells = new View[mRows * mColumns]; in onSizeChanged() 257 if (DEBUG) Log.v(TAG, String.format("New dimensions: %dx%d", mColumns, mRows)); in onSizeChanged() 262 setTranslationY(0.5f * (mHeight - mCellSize * mRows) * SCALE); in onSizeChanged() 264 for (int j=0; j<mRows; j++) { in onSizeChanged() 333 place(v, new Point(irand(0, mColumns), irand(0, mRows)), animate); in place() 364 if (!(i >= mColumns-3 || j >= mRows-3)) { 368 if (!(i >= mColumns-2 || j >= mRows-2)) { 372 if (!(i == mColumns-1 || j == mRows-1)) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
D | VolumeDialogImpl.java | 115 private final List<VolumeRow> mRows = new ArrayList<>(); field in VolumeDialogImpl 252 if (mRows.isEmpty()) { in initDialog() 331 if (mShowA11yStream && dynamic && (rowSize = mRows.size()) > 1 in addRow() 335 mRows.add(rowSize - 2, row); in addRow() 338 mRows.add(row); in addRow() 343 int N = mRows.size(); in addExistingRows() 345 final VolumeRow row = mRows.get(i); in addExistingRows() 357 for (VolumeRow row : mRows) { in getActiveRow() 362 return mRows.get(0); in getActiveRow() 366 for (VolumeRow row : mRows) { in findRow() [all …]
|