Home
last modified time | relevance | path

Searched refs:VideoDataQuery (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/data/
DVideoDataFactory.java36 long id = c.getLong(VideoDataQuery.COL_ID); in fromCursor()
37 String title = c.getString(VideoDataQuery.COL_TITLE); in fromCursor()
38 String mimeType = c.getString(VideoDataQuery.COL_MIME_TYPE); in fromCursor()
39 long creationDateInMilliSeconds = c.getLong(VideoDataQuery.COL_DATE_TAKEN); in fromCursor()
40 long lastModifiedDateInSeconds = c.getLong(VideoDataQuery.COL_DATE_MODIFIED); in fromCursor()
44 String filePath = c.getString(VideoDataQuery.COL_DATA); in fromCursor()
45 int width = c.getInt(VideoDataQuery.COL_WIDTH); in fromCursor()
46 int height = c.getInt(VideoDataQuery.COL_HEIGHT); in fromCursor()
67 long sizeInBytes = c.getLong(VideoDataQuery.COL_SIZE); in fromCursor()
68 double latitude = c.getDouble(VideoDataQuery.COL_LATITUDE); in fromCursor()
[all …]
DVideoItemFactory.java62 Cursor c = mContext.getContentResolver().query(uri, VideoDataQuery.QUERY_PROJECTION, null, in get()
76 return queryAll(VideoDataQuery.CONTENT_URI, in queryAll()
83 .forCameraPath(mContentResolver, uri, VideoDataQuery.QUERY_PROJECTION, lastId, in queryAll()
DVideoDataQuery.java22 public class VideoDataQuery { class
DVideoItem.java124 cr.delete(VideoDataQuery.CONTENT_URI, in delete()