Searched refs:photoSupport (Results 1 - 4 of 4) sorted by relevance

/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DDirectoryListLoader.java166 int photoSupport = cursor.getInt(DirectoryQuery.PHOTO_SUPPORT);
167 result.addRow(new Object[]{directoryId, directoryType, displayName, photoSupport});
H A DContactEntryListAdapter.java393 int photoSupport = cursor.getInt(photoSupportColumnIndex);
394 partition.setPhotoSupported(photoSupport == Directory.PHOTO_SUPPORT_THUMBNAIL_ONLY
395 || photoSupport == Directory.PHOTO_SUPPORT_FULL);
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactDirectoryManager.java68 int photoSupport = Directory.PHOTO_SUPPORT_NONE; field in class:ContactDirectoryManager.DirectoryInfo
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/
H A DContactDirectoryManagerTest.java602 int photoSupport) {
610 row[cursor.getColumnIndex(Directory.PHOTO_SUPPORT)] = photoSupport;
616 int exportSupport, int shortcutSupport, int photoSupport) {
626 values.put(Directory.PHOTO_SUPPORT, photoSupport);
600 addDirectoryRow(MatrixCursor cursor, String accountName, String accountType, String displayName, int typeResourceId, int exportSupport, int shortcutSupport, int photoSupport) argument
614 assertDirectoryRow(Cursor cursor, String packageName, String authority, String accountName, String accountType, String displayName, int typeResourceId, int exportSupport, int shortcutSupport, int photoSupport) argument

Completed in 6861 milliseconds