Home
last modified time | relevance | path

Searched refs:PHOTO_FILE_ID (Results 1 – 15 of 15) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DDataRowHandlerForPhoto.java119 values.putNull(Photo.PHOTO_FILE_ID); in preProcessPhoto()
153 values.put(Photo.PHOTO_FILE_ID, photoFileId); in processPhoto()
155 values.putNull(Photo.PHOTO_FILE_ID); in processPhoto()
DContactsProvider2.java613 .add(Contacts.PHOTO_FILE_ID)
922 .add(PhoneLookup.PHOTO_FILE_ID, "contacts_view." + Contacts.PHOTO_FILE_ID)
1088 .add(StreamItemPhotos.PHOTO_FILE_ID)
1090 "'" + DisplayPhoto.CONTENT_URI + "'||'/'||" + StreamItemPhotos.PHOTO_FILE_ID)
1917 Cursor c = db.query(Views.DATA, new String[] {Data._ID, Photo.PHOTO_FILE_ID}, in cleanupPhotoStore()
1919 + Photo.PHOTO_FILE_ID + " IS NOT NULL", null, null, null, null); in cleanupPhotoStore()
1939 StreamItemPhotos.PHOTO_FILE_ID in cleanupPhotoStore()
1971 updateValues.putNull(Photo.PHOTO_FILE_ID); in cleanupPhotoStore()
2976 values.put(StreamItemPhotos.PHOTO_FILE_ID, photoFileId); in processStreamItemPhoto()
8532 new String[] {Contacts.PHOTO_FILE_ID}, in openAssetFileInner()
[all …]
DContactsDatabaseHelper.java439 + Contacts.PHOTO_FILE_ID;
695 + StreamItemPhotos.PHOTO_FILE_ID;
1272 Contacts.PHOTO_FILE_ID + " INTEGER REFERENCES photo_files(_id)," + in onCreate()
1382 StreamItemPhotos.PHOTO_FILE_ID + " INTEGER NOT NULL, " + in onCreate()
1965 + Contacts.PHOTO_FILE_ID + ", " in createContactsViews()
2276 return "(CASE WHEN " + Contacts.PHOTO_FILE_ID + " IS NULL THEN (CASE WHEN " in buildDisplayPhotoUriAlias()
2283 + Contacts.PHOTO_FILE_ID + " END)" in buildDisplayPhotoUriAlias()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DAbstractContactAggregator.java329 " SET " + Contacts.PHOTO_ID + "=?," + Contacts.PHOTO_FILE_ID + "=? " + in AbstractContactAggregator()
1285 + Photo.PHOTO_FILE_ID + ","
1321 int PHOTO_FILE_ID = 16; field
1331 + Contacts.PHOTO_FILE_ID + "=?, "
1347 + Contacts.PHOTO_FILE_ID + ", "
1362 int PHOTO_FILE_ID = 3; field
1486 long photoFileId = c.getLong(RawContactsQuery.PHOTO_FILE_ID); in computeAggregateData()
1529 statement.bindLong(ContactReplaceSqlStatement.PHOTO_FILE_ID, bestPhotoFileId); in computeAggregateData()
1531 statement.bindNull(ContactReplaceSqlStatement.PHOTO_FILE_ID); in computeAggregateData()
1612 Photo.PHOTO_FILE_ID,
[all …]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/enterprise/
DEnterpriseContactsCursorWrapper.java96 case Data.PHOTO_FILE_ID: in getString()
134 case Data.PHOTO_FILE_ID: in getLong()
/packages/apps/Contacts/src/com/android/contacts/model/dataitem/
DPhotoDataItem.java34 return getContentValues().getAsLong(Photo.PHOTO_FILE_ID); in getPhotoFileId()
/packages/apps/Dialer/java/com/android/contacts/common/model/dataitem/
DPhotoDataItem.java33 return getContentValues().getAsLong(Photo.PHOTO_FILE_ID); in getPhotoFileId()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsProvider2Test.java226 Contacts.PHOTO_FILE_ID, in testContactsProjection()
267 Contacts.PHOTO_FILE_ID, in testContactsStrequentProjection()
312 Contacts.PHOTO_FILE_ID, in testContactsStrequentPhoneOnlyProjection()
361 Contacts.PHOTO_FILE_ID, in testContactsWithSnippetProjection()
492 Contacts.PHOTO_FILE_ID, in testDataProjection()
574 Contacts.PHOTO_FILE_ID, in testDistinctDataProjection()
668 Contacts.PHOTO_FILE_ID, in testEntityProjection()
761 PhoneLookup.PHOTO_FILE_ID, in testPhoneLookupProjection()
797 PhoneLookup.PHOTO_FILE_ID, in testPhoneLookupEnterpriseProjection()
828 PhoneLookup.PHOTO_FILE_ID, in testSipPhoneLookupProjection()
[all …]
DEnterpriseContactsCursorWrapperTest.java42 /* column 9 */ PhoneLookup.PHOTO_FILE_ID, in testWrappedResults()
DContactsDatabaseHelperUpgradeTest.java234 new TableColumn(Contacts.PHOTO_FILE_ID, INTEGER, false, null),
316 new TableColumn(StreamItemPhotos.PHOTO_FILE_ID, INTEGER, true, null),
DBaseContactsProvider2Test.java621 Contacts.PHOTO_FILE_ID); in queryPhotoFileId()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/aggregation/
DContactAggregatorTest.java1205 Photo.PHOTO_FILE_ID); in testChooseLargerPhotoByDimensions()
1227 Photo.PHOTO_FILE_ID); in testChooseLargerPhotoByFileSize()
1250 Photo.PHOTO_FILE_ID); in testChooseFilePhotoOverThumbnail()
1277 Photo.PHOTO_FILE_ID); in testFallbackToAccountPriorityForSamePhoto()
DContactAggregator2Test.java1213 Photo.PHOTO_FILE_ID); in testChooseLargerPhotoByDimensions()
1235 Photo.PHOTO_FILE_ID); in testChooseLargerPhotoByFileSize()
1258 Photo.PHOTO_FILE_ID); in testChooseFilePhotoOverThumbnail()
1285 Photo.PHOTO_FILE_ID); in testFallbackToAccountPriorityForSamePhoto()
/packages/apps/Contacts/src/com/android/contacts/editor/
DEditorUiUtils.java233 return valuesDelta.getAsLong(Photo.PHOTO_FILE_ID); in getPhotoFileId()
DRawContactEditorView.java314 mPhotoValuesDelta.put(Photo.PHOTO_FILE_ID, (String) null); in removePhoto()