HomeSort by relevance Sort by last modified time
    Searched defs:mRows (Results 1 - 11 of 11) sorted by null

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
ArrayTestListAdapter.java 30 private final List<TestListItem> mRows = new ArrayList<TestListItem>();
37 mRows.add(item);
43 return mRows;
TestListAdapter.java 61 private final List<TestListItem> mRows = new ArrayList<TestListItem>();
150 mRows.clear();
151 mRows.addAll(result.mItems);
274 return mRows.size();
279 return mRows.get(position);
302 for (TestListItem item : mRows) {
  /frameworks/base/core/java/android/text/
PackedObjectVector.java 24 private int mRows;
35 mRows = ArrayUtils.idealIntArraySize(0) / mColumns;
38 mRowGapLength = mRows;
40 mValues = new Object[mRows * mColumns];
100 return mRows - mRowGapLength;
116 int after = mRows - (mRowGapStart + mRowGapLength);
119 System.arraycopy(mValues, (mRows - after) * mColumns, newvalues, (newsize - after) * mColumns, after * mColumns);
121 mRowGapLength += newsize - mRows;
122 mRows = newsize;
171 for (int i = 0; i < mRows; i++
    [all...]
PackedIntVector.java 29 private int mRows;
45 mRows = 0;
48 mRowGapLength = mRows;
236 return mRows - mRowGapLength;
262 int after = mRows - (rowgapstart + mRowGapLength);
266 System.arraycopy(mValues, (mRows - after) * columns,
273 valuegap[i] += newsize - mRows;
281 mRowGapLength += newsize - mRows;
282 mRows = newsize;
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockSuggestionProviderCursor.java 28 private final ArrayList<Row> mRows;
32 mRows = new ArrayList<Row>();
37 mRows.add(row);
42 return mRows.get(getPosition()).get(column);
52 return mRows.size();
57 return mRows.get(getPosition()).getDouble(column);
62 return mRows.get(getPosition()).getFloat(column);
67 return mRows.get(getPosition()).getInt(column);
72 return mRows.get(getPosition()).getLong(column);
77 return mRows.get(getPosition()).getShort(column)
    [all...]
  /packages/apps/Mms/src/com/android/mms/
SuggestionsProvider.java 93 ArrayList<Row> mRows = new ArrayList<Row>();
107 mRows.clear(); // assume no results
112 return mRows.size();
143 mRows.add(new Row(i, snippet));
257 if (position >= 0 && position < mRows.size()) {
259 mDatabaseCursor.moveToPosition(mRows.get(position).mRowNumber);
275 return moveToPosition(mRows.size() - 1);
296 Row row = mRows.get(mCurrentRow);
372 return mCurrentRow >= mRows.size();
388 return mCurrentRow == mRows.size() - 1
    [all...]
  /packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/mocks/
MockContentProvider.java 50 private ArrayList<Object> mRows = new ArrayList<Object>();
104 mRows.add(values);
109 mRows.add(row);
114 mRows.clear();
187 for (Object row : mRows) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
DessertCaseView.java 124 private int mRows, mColumns;
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-1))
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
AbstractCursorTest.java 424 private ArrayList<Object>[] mRows;
452 mRows = new ArrayList[rowCount];
455 mRows[i] = rows.get(i);
458 mRows[i].add(Long.valueOf(i));
489 return mRows.length;
499 Object cell = mRows[mPos].get(columnIndex);
505 Number num = (Number) mRows[mPos].get(columnIndex);
511 Number num = (Number) mRows[mPos].get(columnIndex);
517 Number num = (Number) mRows[mPos].get(columnIndex);
523 Number num = (Number) mRows[mPos].get(columnIndex)
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 137 private int mRows; // Cache (mCount + mColumns - 1) / mColumns
222 mRows = (mCount + mColumns - 1) / mColumns;
224 mMaxScrollY = mSpec.mCellSpacing + (mRows * mBlockHeight)
296 // Make sure we handle the mRows == 0 case right.
297 startRow = Math.max(Math.min(startRow, mRows - 1), 0);
298 endRow = Math.max(Math.min(endRow, mRows), 0);
665 // Make sure we handle the mRows == 0 case right.
666 startRow = Math.max(Math.min(startRow, mRows - 1), 0);
667 endRow = Math.max(Math.min(endRow, mRows), 0);
737 private final int mRows; // Cache (mCount + mColumns - 1) / mColumn
    [all...]
  /prebuilts/devtools/tools/lib/
traceview.jar 

Completed in 395 milliseconds