Searched refs:mRows (Results 1 – 6 of 6) 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 | 30 private int mRows; field in PackedIntVector 46 mRows = 0; in PackedIntVector() 49 mRowGapLength = mRows; in PackedIntVector() 237 return mRows - mRowGapLength; in size() 263 int after = mRows - (rowgapstart + mRowGapLength); in growBuffer() 267 System.arraycopy(mValues, (mRows - after) * columns, in growBuffer() 274 valuegap[i] += newsize - mRows; in growBuffer() 282 mRowGapLength += newsize - mRows; in growBuffer() 283 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 | VolumeDialog.java | 108 private final List<VolumeRow> mRows = new ArrayList<>(); field in VolumeDialog 238 if (mRows.isEmpty()) { in initDialog() 312 if (!mRows.isEmpty()) { in addRow() 316 mRows.add(row); in addRow() 320 int N = mRows.size(); in addExistingRows() 322 final VolumeRow row = mRows.get(i); in addExistingRows() 347 for (VolumeRow row : mRows) { in getActiveRow() 352 return mRows.get(0); in getActiveRow() 356 for (VolumeRow row : mRows) { in findRow() 619 for (VolumeRow row : mRows) { [all …]
|
/frameworks/base/docs/html/training/wearables/ui/ |
D | 2d-picker.jd | 71 private List<Row> mRows;
|