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 166 int photoSupport = cursor.getInt(DirectoryQuery.PHOTO_SUPPORT);
167 result.addRow(new Object[]{directoryId, directoryType, displayName, photoSupport});
ContactEntryListAdapter.java 368 int photoSupport = cursor.getInt(photoSupportColumnIndex);
369 partition.setPhotoSupported(photoSupport == Directory.PHOTO_SUPPORT_THUMBNAIL_ONLY
370 || photoSupport == Directory.PHOTO_SUPPORT_FULL);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactDirectoryManager.java 68 int photoSupport = Directory.PHOTO_SUPPORT_NONE;
460 int photoSupport = cursor.getInt(DirectoryQuery.PHOTO_SUPPORT);
461 switch (photoSupport) {
466 info.photoSupport = photoSupport;
470 + " - invalid photo support flag: " + photoSupport);
502 values.put(Directory.PHOTO_SUPPORT, info.photoSupport);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactDirectoryManagerTest.java 602 int photoSupport) {
610 row[cursor.getColumnIndex(Directory.PHOTO_SUPPORT)] = photoSupport;
616 int exportSupport, int shortcutSupport, int photoSupport) {
626 values.put(Directory.PHOTO_SUPPORT, photoSupport);

Completed in 1310 milliseconds