Searched refs:mRows (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/params/
H A DLensShadingMap.java63 mRows = checkArgumentPositive(rows, "rows must be positive");
80 return mRows;
97 return mRows * mColumns * COUNT;
132 } else if (row < 0 || row >= mRows) {
158 } else if (row < 0 || row >= mRows) {
224 return mRows == other.mRows
237 return HashCodeHelpers.hashCode(mRows, mColumns, elemsHash);
261 for (int r = 0; r < mRows; r++) {
271 if (r < mRows
286 private final int mRows; field in class:LensShadingMap
[all...]
/frameworks/base/core/java/android/text/
H A DPackedObjectVector.java27 private int mRows; field in class:PackedObjectVector
39 mRows = 0;
42 mRowGapLength = mRows;
102 return mRows - mRowGapLength;
117 int after = mRows - (mRowGapStart + mRowGapLength);
120 System.arraycopy(mValues, (mRows - after) * mColumns, newvalues, (newsize - after) * mColumns, after * mColumns);
122 mRowGapLength += newsize - mRows;
123 mRows = newsize;
172 for (int i = 0; i < mRows; i++)
H A DPackedIntVector.java30 private int mRows; field in class:PackedIntVector
46 mRows = 0;
49 mRowGapLength = mRows;
237 return mRows - mRowGapLength;
263 int after = mRows - (rowgapstart + mRowGapLength);
267 System.arraycopy(mValues, (mRows - after) * columns,
274 valuegap[i] += newsize - mRows;
282 mRowGapLength += newsize - mRows;
283 mRows = newsize;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCaseView.java124 private int mRows, mColumns; field in class:DessertCaseView
245 mRows = mHeight / mCellSize;
248 mCells = new View[mRows * mColumns];
250 if (DEBUG) Log.v(TAG, String.format("New dimensions: %dx%d", mColumns, mRows));
255 setTranslationY(0.5f * (mHeight - mCellSize * mRows) * SCALE);
257 for (int j=0; j<mRows; j++) {
326 place(v, new Point(irand(0, mColumns), irand(0, mRows)), animate);
357 if (!(i >= mColumns-3 || j >= mRows-3)) {
361 if (!(i >= mColumns-2 || j >= mRows-2)) {
365 if (!(i == mColumns-1 || j == mRows
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialog.java103 private final List<VolumeRow> mRows = new ArrayList<VolumeRow>(); field in class:VolumeDialog
262 if (!mRows.isEmpty()) {
294 mRows.add(row);
302 for (VolumeRow row : mRows) {
307 return mRows.get(0);
311 for (VolumeRow row : mRows) {
573 for (VolumeRow row : mRows) {
596 for (int i = mRows.size() -1; i >= 0; i--) {
597 final VolumeRow row = mRows.get(i);
600 mRows
[all...]

Completed in 221 milliseconds