Searched refs:photoUri (Results 1 - 7 of 7) sorted by relevance

/frameworks/ex/chips/tests/src/com/android/ex/chips/
H A DRecipientAlternatesAdapterTest.java74 String photoUri,
78 contactId, dataId, photoUri, displayNameSource});
89 String photoUri,
99 assertEquals(photoUri, c.getString(6));
67 addRow(MatrixCursor c, String displayName, String destination, int destinationType, String destinationLabel, long contactId, long dataId, String photoUri, int displayNameSource ) argument
82 assertRow(Cursor c, int position, String displayName, String destination, int destinationType, String destinationLabel, long contactId, long dataId, String photoUri, int displayNameSource ) argument
/frameworks/ex/photoviewer/src/com/android/ex/photo/loaders/
H A DPhotoBitmapLoader.java38 public PhotoBitmapLoader(Context context, String photoUri) { argument
40 mPhotoUri = photoUri;
43 public void setPhotoUri(String photoUri) { argument
44 mPhotoUri = photoUri;
/frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/
H A DPhotoBitmapLoader.java38 public PhotoBitmapLoader(Context context, String photoUri) { argument
40 mPhotoUri = photoUri;
43 public void setPhotoUri(String photoUri) { argument
44 mPhotoUri = photoUri;
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
H A DPhotoPagerAdapter.java45 final String photoUri = cursor.getString(mContentUriIndex);
54 if(photoUri == null && loading) {
62 .setResolvedPhotoUri(photoUri)
/frameworks/ex/photoviewer/src/com/android/ex/photo/adapters/
H A DPhotoPagerAdapter.java43 final String photoUri = cursor.getString(mContentUriIndex);
50 .setResolvedPhotoUri(photoUri)
/frameworks/base/core/java/android/provider/
H A DContacts.java593 Uri photoUri = Uri.withAppendedPath(person, Contacts.Photos.CONTENT_DIRECTORY);
596 cr.update(photoUri, values, null, null);
607 Uri photoUri = Uri.withAppendedPath(person, Contacts.Photos.CONTENT_DIRECTORY);
608 Cursor cursor = cr.query(photoUri, new String[]{Photos.DATA}, null, null, null);
H A DContactsContract.java1865 * Uri photoUri = Uri.withAppendedPath(contactUri, Contacts.Photo.CONTENT_DIRECTORY);
1866 * Cursor cursor = getContentResolver().query(photoUri,
1970 Uri photoUri = Uri.withAppendedPath(contactUri, Photo.CONTENT_DIRECTORY);
1971 if (photoUri == null) {
1974 Cursor cursor = cr.query(photoUri,
3456 * Uri photoUri = getContentResolver().insert(builder.build(), values);
3457 * long photoId = ContentUris.parseId(photoUri);
3470 * Uri photoUri = getContentResolver().insert(builder.build(), values);
3471 * long photoId = ContentUris.parseId(photoUri);
3575 * public InputStream openDisplayPhoto(String photoUri) {
[all...]

Completed in 1921 milliseconds