Home
last modified time | relevance | path

Searched refs:mRows (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/params/
DLensShadingMap.java63 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/
DPackedObjectVector.java27 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()
DPackedIntVector.java30 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/
DDessertCaseView.java124 private int mRows, mColumns; field in DessertCaseView
245 mRows = mHeight / mCellSize; in onSizeChanged()
248 mCells = new View[mRows * mColumns]; in onSizeChanged()
250 if (DEBUG) Log.v(TAG, String.format("New dimensions: %dx%d", mColumns, mRows)); in onSizeChanged()
255 setTranslationY(0.5f * (mHeight - mCellSize * mRows) * SCALE); in onSizeChanged()
257 for (int j=0; j<mRows; j++) { in onSizeChanged()
326 place(v, new Point(irand(0, mColumns), irand(0, mRows)), animate); in place()
357 if (!(i >= mColumns-3 || j >= mRows-3)) {
361 if (!(i >= mColumns-2 || j >= mRows-2)) {
365 if (!(i == mColumns-1 || j == mRows-1)) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
DVolumeDialog.java103 private final List<VolumeRow> mRows = new ArrayList<VolumeRow>(); field in VolumeDialog
260 if (!mRows.isEmpty()) { in addRow()
292 mRows.add(row); in addRow()
300 for (VolumeRow row : mRows) { in getActiveRow()
305 return mRows.get(0); in getActiveRow()
309 for (VolumeRow row : mRows) { in findRow()
571 for (VolumeRow row : mRows) {
594 for (int i = mRows.size() -1; i >= 0; i--) {
595 final VolumeRow row = mRows.get(i);
598 mRows.remove(i);
[all …]
/frameworks/base/docs/html/training/wearables/ui/
D2d-picker.jd71 private List<Row> mRows;