Searched defs:mPartitions (Results 1 - 1 of 1) sorted by last modified time

/frameworks/ex/common/java/com/android/common/widget/
H A DCompositeCursorAdapter.java58 private Partition[] mPartitions; field in class:CompositeCursorAdapter
71 mPartitions = new Partition[INITIAL_CAPACITY];
88 if (mSize >= mPartitions.length) {
91 System.arraycopy(mPartitions, 0, newAdapters, 0, mSize);
92 mPartitions = newAdapters;
94 mPartitions[mSize++] = partition;
100 Cursor cursor = mPartitions[partitionIndex].cursor;
105 System.arraycopy(mPartitions, partitionIndex + 1, mPartitions, partitionIndex,
117 mPartitions[
[all...]

Completed in 21 milliseconds