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

/packages/apps/Contacts/src/com/android/contacts/list/
H A DJoinContactListAdapter.java164 protected void bindHeaderView(View view, int partitionIndex, Cursor cursor) { argument
205 public Uri getContactUri(int partitionIndex, Cursor cursor) { argument
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DContactListAdapter.java158 int partitionIndex = getPartitionForPosition(position);
160 return item != null ? getContactUri(partitionIndex, item) : null;
163 public Uri getContactUri(int partitionIndex, Cursor cursor) { argument
167 long directoryId = ((DirectoryPartition)getPartition(partitionIndex)).getDirectoryId();
181 public boolean isSelectedContact(int partitionIndex, Cursor cursor) { argument
182 long directoryId = ((DirectoryPartition)getPartition(partitionIndex)).getDirectoryId();
221 protected void bindPhoto(final ContactListItemView view, int partitionIndex, Cursor cursor) { argument
222 if (!isPhotoSupported(partitionIndex)) {
273 int partitionIndex = -1;
278 partitionIndex
349 changeCursor(int partitionIndex, Cursor cursor) argument
[all...]
H A DPhoneNumberListAdapter.java296 final int partitionIndex = getPartitionForPosition(position);
298 return item != null ? getDataUri(partitionIndex, item) : null;
301 public Uri getDataUri(int partitionIndex, Cursor cursor) { argument
303 ((DirectoryPartition)getPartition(partitionIndex)).getDirectoryId();
459 protected void bindPhoto(final ContactListItemView view, int partitionIndex, Cursor cursor) { argument
460 if (!isPhotoSupported(partitionIndex)) {
559 protected Uri getContactUri(int partitionIndex, Cursor cursor, argument
561 final DirectoryPartition directory = (DirectoryPartition) getPartition(partitionIndex);
564 return super.getContactUri(partitionIndex, cursor, contactIdColumn, lookUpKeyColumn);
H A DContactEntryListAdapter.java449 public void changeCursor(int partitionIndex, Cursor cursor) { argument
450 if (partitionIndex >= getPartitionCount()) {
455 Partition partition = getPartition(partitionIndex);
460 if (mDisplayPhotos && mPhotoLoader != null && isPhotoSupported(partitionIndex)) {
464 super.changeCursor(partitionIndex, cursor);
466 if (isSectionHeaderDisplayEnabled() && partitionIndex == getIndexedPartition()) {
526 public int getItemViewType(int partitionIndex, int position) { argument
527 int type = super.getItemViewType(partitionIndex, position);
530 && partitionIndex == getIndexedPartition()) {
612 protected void bindHeaderView(View view, int partitionIndex, Curso argument
686 isPhotoSupported(int partitionIndex) argument
715 bindQuickContact(final ContactListItemView view, int partitionIndex, Cursor cursor, int photoIdColumn, int photoUriColumn, int contactIdColumn, int lookUpKeyColumn, int displayNameColumn) argument
764 getContactUri(int partitionIndex, Cursor cursor, int contactIdColumn, int lookUpKeyColumn) argument
[all...]
H A DContactEntryListFragment.java365 private void startLoadingDirectoryPartition(int partitionIndex) { argument
366 DirectoryPartition partition = (DirectoryPartition)mAdapter.getPartition(partitionIndex);
371 loadDirectoryPartition(partitionIndex, partition);
373 loadDirectoryPartitionDelayed(partitionIndex, partition);
378 getLoaderManager().initLoader(partitionIndex, args, this);
387 private void loadDirectoryPartitionDelayed(int partitionIndex, DirectoryPartition partition) { argument
390 DIRECTORY_SEARCH_MESSAGE, partitionIndex, 0, partition);
397 protected void loadDirectoryPartition(int partitionIndex, DirectoryPartition partition) { argument
400 getLoaderManager().restartLoader(partitionIndex, args, this);
443 protected void onPartitionLoaded(int partitionIndex, Curso argument
[all...]

Completed in 103 milliseconds