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

  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DirectoryListLoader.java 171 int photoSupport = cursor.getInt(DirectoryQuery.PHOTO_SUPPORT);
172 result.addRow(new Object[]{directoryId, directoryType, displayName, photoSupport});
ContactEntryListAdapter.java 425 int photoSupport = cursor.getInt(photoSupportColumnIndex);
426 partition.setPhotoSupported(photoSupport == Directory.PHOTO_SUPPORT_THUMBNAIL_ONLY
427 || photoSupport == Directory.PHOTO_SUPPORT_FULL);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactDirectoryManager.java 68 int photoSupport = Directory.PHOTO_SUPPORT_NONE;
470 int photoSupport = cursor.getInt(DirectoryQuery.PHOTO_SUPPORT);
471 switch (photoSupport) {
476 info.photoSupport = photoSupport;
480 + " - invalid photo support flag: " + photoSupport);
512 values.put(Directory.PHOTO_SUPPORT, info.photoSupport);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactDirectoryManagerTest.java 605 int photoSupport) {
613 row[cursor.getColumnIndex(Directory.PHOTO_SUPPORT)] = photoSupport;
619 int exportSupport, int shortcutSupport, int photoSupport) {
629 values.put(Directory.PHOTO_SUPPORT, photoSupport);

Completed in 224 milliseconds