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

  /packages/apps/Camera2/src/com/android/camera/data/
PhotoDataFactory.java 33 long id = c.getLong(PhotoDataQuery.COL_ID);
34 String title = c.getString(PhotoDataQuery.COL_TITLE);
35 String mimeType = c.getString(PhotoDataQuery.COL_MIME_TYPE);
36 long dateTakenInMilliSeconds = c.getLong(PhotoDataQuery.COL_DATE_TAKEN);
37 long dateModifiedInSeconds = c.getLong(PhotoDataQuery.COL_DATE_MODIFIED);
41 String filePath = c.getString(PhotoDataQuery.COL_DATA);
42 int orientation = c.getInt(PhotoDataQuery.COL_ORIENTATION);
43 int width = c.getInt(PhotoDataQuery.COL_WIDTH);
44 int height = c.getInt(PhotoDataQuery.COL_HEIGHT);
65 long sizeInBytes = c.getLong(PhotoDataQuery.COL_SIZE)
    [all...]
PhotoItemFactory.java 58 Cursor c = mContentResolver.query(uri, PhotoDataQuery.QUERY_PROJECTION,
72 return queryAll(PhotoDataQuery.CONTENT_URI, FilmstripItemBase.QUERY_ALL_MEDIA_ID);
78 .forCameraPath(mContentResolver, uri, PhotoDataQuery.QUERY_PROJECTION, lastId,
79 PhotoDataQuery.QUERY_ORDER, this);
PhotoDataQuery.java 22 public class PhotoDataQuery {
PhotoItem.java 93 cr.delete(PhotoDataQuery.CONTENT_URI,
CameraFilmstripDataAdapter.java 329 return mPhotoItemFactory.queryAll(PhotoDataQuery.CONTENT_URI, mMinPhotoId);

Completed in 116 milliseconds