HomeSort by relevance Sort by last modified time
    Searched refs:mPartitions (Results 1 - 2 of 2) sorted by null

  /frameworks/ex/common/java/com/android/common/widget/
CompositeCursorAdapter.java 58 private Partition[] mPartitions;
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[i].cursor = null
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
AndroidXmlFormattingStrategy.java 84 private final LinkedList<TypedPosition> mPartitions = new LinkedList<TypedPosition>();
117 TypedPosition partition = mPartitions.poll();
560 mPartitions.offer(partition);
579 mPartitions.clear();

Completed in 67 milliseconds