Home | History | Annotate | Download | only in list

Lines Matching defs:partition

45 import com.android.common.widget.CompositeCursorAdapter.Partition;
308 Partition partition = mAdapter.getPartition(i);
309 if (partition instanceof DirectoryPartition) {
310 DirectoryPartition directoryPartition = (DirectoryPartition) partition;
363 DirectoryPartition partition = (DirectoryPartition) mAdapter.getPartition(partitionIndex);
364 partition.setStatus(DirectoryPartition.STATUS_LOADING);
365 long directoryId = partition.getDirectoryId();
368 loadDirectoryPartition(partitionIndex, partition);
370 loadDirectoryPartitionDelayed(partitionIndex, partition);
384 private void loadDirectoryPartitionDelayed(int partitionIndex, DirectoryPartition partition) {
385 mDelayedDirectorySearchHandler.removeMessages(DIRECTORY_SEARCH_MESSAGE, partition);
388 DIRECTORY_SEARCH_MESSAGE, partitionIndex, 0, partition);
392 /** Loads the directory partition. */
393 protected void loadDirectoryPartition(int partitionIndex, DirectoryPartition partition) {
395 args.putLong(DIRECTORY_ID_ARG_KEY, partition.getDirectoryId());