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