Searched defs:mRows (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/params/
H A DLensShadingMap.java64 mRows = checkArgumentPositive(rows, "rows must be positive");
81 return mRows;
98 return mRows * mColumns * COUNT;
133 } else if (row < 0 || row >= mRows) {
159 } else if (row < 0 || row >= mRows) {
225 return mRows == other.mRows
238 return HashCodeHelpers.hashCode(mRows, mColumns, elemsHash);
242 private final int mRows; field in class:LensShadingMap
/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/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DStaggeredGrid.java96 protected int mNumRows = 1; // mRows.length
97 protected Row[] mRows; field in class:StaggeredGrid
140 mRows = row;
224 if (mRows[i].high > mRows[maxHighRowIndex].high) {
234 if (mRows[i].high < mRows[minHighRowIndex].high) {
259 if (mRows[i].low > mRows[maxLowRowIndex].low) {
269 if (mRows[
[all...]
H A DGridLayoutManager.java310 private StaggeredGrid.Row[] mRows; field in class:GridLayoutManager
723 if (mRows != null && mNumRows == mRows.length &&
744 mRows[i].low = 0;
745 mRows[i].high = 0;
751 mRows[i].low = Integer.MAX_VALUE;
752 mRows[i].high = Integer.MIN_VALUE;
771 if (low < mRows[row].low) {
772 mRows[row].low = mRows[ro
[all...]
/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...]

Completed in 177 milliseconds