Home | History | Annotate | Download | only in list

Lines Matching defs:partition

49 import com.android.common.widget.CompositeCursorAdapter.Partition;
334 Partition partition = mAdapter.getPartition(i);
335 if (partition instanceof DirectoryPartition) {
336 DirectoryPartition directoryPartition = (DirectoryPartition)partition;
386 DirectoryPartition partition = (DirectoryPartition)mAdapter.getPartition(partitionIndex);
387 partition.setStatus(DirectoryPartition.STATUS_LOADING);
388 long directoryId = partition.getDirectoryId();
391 loadDirectoryPartition(partitionIndex, partition);
393 loadDirectoryPartitionDelayed(partitionIndex, partition);
407 private void loadDirectoryPartitionDelayed(int partitionIndex, DirectoryPartition partition) {
408 mDelayedDirectorySearchHandler.removeMessages(DIRECTORY_SEARCH_MESSAGE, partition);
410 DIRECTORY_SEARCH_MESSAGE, partitionIndex, 0, partition);
415 partition.
417 protected void loadDirectoryPartition(int partitionIndex, DirectoryPartition partition) {
419 args.putLong(DIRECTORY_ID_ARG_KEY, partition.getDirectoryId());