Searched defs:partitionIndex (Results 1 - 6 of 6) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/list/
H A DJoinContactListAdapter.java163 protected void bindHeaderView(View view, int partitionIndex, Cursor cursor) { argument
203 public Uri getContactUri(int partitionIndex, Cursor cursor) { argument
H A DDefaultContactBrowseListFragment.java180 protected void showCount(int partitionIndex, Cursor data) { argument
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DContactListAdapter.java156 int partitionIndex = getPartitionForPosition(position);
158 return item != null ? getContactUri(partitionIndex, item) : null;
161 public Uri getContactUri(int partitionIndex, Cursor cursor) { argument
165 long directoryId = ((DirectoryPartition)getPartition(partitionIndex)).getDirectoryId();
179 public boolean isSelectedContact(int partitionIndex, Cursor cursor) { argument
180 long directoryId = ((DirectoryPartition)getPartition(partitionIndex)).getDirectoryId();
227 protected void bindPhoto(final ContactListItemView view, int partitionIndex, Cursor cursor) { argument
228 if (!isPhotoSupported(partitionIndex)) {
269 int partitionIndex = -1;
274 partitionIndex
345 changeCursor(int partitionIndex, Cursor cursor) argument
[all...]
H A DPhoneNumberListAdapter.java259 final int partitionIndex = getPartitionForPosition(position);
261 return item != null ? getDataUri(partitionIndex, item) : null;
264 public Uri getDataUri(int partitionIndex, Cursor cursor) { argument
266 ((DirectoryPartition)getPartition(partitionIndex)).getDirectoryId();
411 protected void bindPhoto(final ContactListItemView view, int partitionIndex, Cursor cursor) { argument
412 if (!isPhotoSupported(partitionIndex)) {
502 protected Uri getContactUri(int partitionIndex, Cursor cursor, argument
504 final DirectoryPartition directory = (DirectoryPartition) getPartition(partitionIndex);
507 return super.getContactUri(partitionIndex, cursor, contactIdColumn, lookUpKeyColumn);
H A DContactEntryListAdapter.java417 public void changeCursor(int partitionIndex, Cursor cursor) { argument
418 if (partitionIndex >= getPartitionCount()) {
423 Partition partition = getPartition(partitionIndex);
428 if (mDisplayPhotos && mPhotoLoader != null && isPhotoSupported(partitionIndex)) {
432 super.changeCursor(partitionIndex, cursor);
434 if (isSectionHeaderDisplayEnabled() && partitionIndex == getIndexedPartition()) {
471 public int getItemViewType(int partitionIndex, int position) { argument
472 int type = super.getItemViewType(partitionIndex, position);
475 && partitionIndex == getIndexedPartition()) {
549 protected void bindHeaderView(View view, int partitionIndex, Curso argument
616 isPhotoSupported(int partitionIndex) argument
644 bindQuickContact(final ContactListItemView view, int partitionIndex, Cursor cursor, int photoIdColumn, int photoUriColumn, int contactIdColumn, int lookUpKeyColumn) argument
666 getContactUri(int partitionIndex, Cursor cursor, int contactIdColumn, int lookUpKeyColumn) argument
[all...]
H A DContactEntryListFragment.java336 private void startLoadingDirectoryPartition(int partitionIndex) { argument
337 DirectoryPartition partition = (DirectoryPartition)mAdapter.getPartition(partitionIndex);
342 loadDirectoryPartition(partitionIndex, partition);
344 loadDirectoryPartitionDelayed(partitionIndex, partition);
349 getLoaderManager().initLoader(partitionIndex, args, this);
358 private void loadDirectoryPartitionDelayed(int partitionIndex, DirectoryPartition partition) { argument
361 DIRECTORY_SEARCH_MESSAGE, partitionIndex, 0, partition);
368 protected void loadDirectoryPartition(int partitionIndex, DirectoryPartition partition) { argument
371 getLoaderManager().restartLoader(partitionIndex, args, this);
414 protected void onPartitionLoaded(int partitionIndex, Curso argument
467 showCount(int partitionIndex, Cursor data) argument
[all...]

Completed in 195 milliseconds