Searched defs:mRows (Results 1 - 7 of 7) 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.java34 private int mRows; field in class:PackedIntVector
50 mRows = 0;
53 mRowGapLength = mRows;
241 return mRows - mRowGapLength;
267 int after = mRows - (rowgapstart + mRowGapLength);
271 System.arraycopy(mValues, (mRows - after) * columns,
278 valuegap[i] += newsize - mRows;
286 mRowGapLength += newsize - mRows;
287 mRows = newsize;
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
H A DNotificationViewHierarchyManagerTest.java117 assertTrue(Lists.newArrayList(entry0.row).equals(mListContainer.mRows));
146 assertTrue(Lists.newArrayList(entry0.row, entry1.row, entry2.row).equals(mListContainer.mRows));
171 assertTrue(Lists.newArrayList(entry0.row, entry1.row).equals(mListContainer.mRows));
191 final List<View> mRows = Lists.newArrayList(); field in class:NotificationViewHierarchyManagerTest.FakeListContainer
198 mRows.remove(child);
199 mRows.add(newIndex, child);
216 return mRows.size();
221 return mRows.get(i);
227 mRows.remove(v);
233 mRows
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCaseView.java131 private int mRows, mColumns; field in class:DessertCaseView
252 mRows = mHeight / mCellSize;
255 mCells = new View[mRows * mColumns];
257 if (DEBUG) Log.v(TAG, String.format("New dimensions: %dx%d", mColumns, mRows));
262 setTranslationY(0.5f * (mHeight - mCellSize * mRows) * SCALE);
264 for (int j=0; j<mRows; j++) {
333 place(v, new Point(irand(0, mColumns), irand(0, mRows)), animate);
364 if (!(i >= mColumns-3 || j >= mRows-3)) {
368 if (!(i >= mColumns-2 || j >= mRows-2)) {
372 if (!(i == mColumns-1 || j == mRows
[all...]
/frameworks/base/tests/UiBench/src/com/android/test/uibench/leanback/
H A DTestHelper.java119 int mRows = DEFAULT_ROWS; field in class:TestHelper.RowsAdapterBuilder
148 mRows = rows;
184 for (int i = 0; i < mRows; i++) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialogImpl.java130 private final List<VolumeRow> mRows = new ArrayList<>(); field in class:VolumeDialogImpl
243 if (mRows.isEmpty()) {
314 mRows.add(row);
318 int N = mRows.size();
320 final VolumeRow row = mRows.get(i);
329 for (VolumeRow row : mRows) {
334 for (VolumeRow row : mRows) {
339 return mRows.get(0);
343 for (VolumeRow row : mRows) {
625 for (final VolumeRow row : mRows) {
[all...]

Completed in 210 milliseconds