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

/frameworks/ex/common/java/com/android/common/
H A DArrayListCursor.java32 private ArrayList<Object>[] mRows; field in class:ArrayListCursor
54 mRows = new ArrayList[rowCount];
57 mRows[i] = rows.get(i);
59 mRows[i].add(i);
80 final Object data = mRows[mPos].get(i);
114 return mRows.length;
124 return (byte[]) mRows[mPos].get(columnIndex);
129 Object cell = mRows[mPos].get(columnIndex);
135 Number num = (Number) mRows[mPos].get(columnIndex);
141 Number num = (Number) mRows[mPo
[all...]
/frameworks/base/graphics/java/android/graphics/utils/
H A DBoundaryPatch.java32 private int mRows; field in class:BoundaryPatch
41 mRows = mCols = 2; // default minimum
76 if (mRows != rows || mCols != cols) {
77 mRows = rows;
151 // we need mRows * mCols points, for verts and another set for textures
153 int vertCount = mRows * mCols * 4;
158 int indexCount = (mRows - 1) * (mCols - 1) * 6;
165 mRows, mCols, mVerts, mIndices);
/frameworks/base/core/java/android/text/
H A DPackedObjectVector.java24 private int mRows; field in class:PackedObjectVector
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;
[all...]
H A DPackedIntVector.java29 private int mRows; field in class:PackedIntVector
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;
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DIccProvider.java45 private ArrayList<Object>[] mRows; field in class:ArrayListCursor
67 mRows = new ArrayList[rowCount];
70 mRows[i] = rows.get(i);
72 mRows[i].add(i);
93 final Object data = mRows[mPos].get(i);
127 return mRows.length;
137 return (byte[]) mRows[mPos].get(columnIndex);
142 Object cell = mRows[mPos].get(columnIndex);
148 Number num = (Number) mRows[mPos].get(columnIndex);
154 Number num = (Number) mRows[mPo
[all...]

Completed in 608 milliseconds