OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VideoDataQuery
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Camera2/src/com/android/camera/data/
VideoDataFactory.java
36
long id = c.getLong(
VideoDataQuery
.COL_ID);
37
String title = c.getString(
VideoDataQuery
.COL_TITLE);
38
String mimeType = c.getString(
VideoDataQuery
.COL_MIME_TYPE);
39
long creationDateInMilliSeconds = c.getLong(
VideoDataQuery
.COL_DATE_TAKEN);
40
long lastModifiedDateInSeconds = c.getLong(
VideoDataQuery
.COL_DATE_MODIFIED);
44
String filePath = c.getString(
VideoDataQuery
.COL_DATA);
45
int width = c.getInt(
VideoDataQuery
.COL_WIDTH);
46
int height = c.getInt(
VideoDataQuery
.COL_HEIGHT);
67
long sizeInBytes = c.getLong(
VideoDataQuery
.COL_SIZE);
68
double latitude = c.getDouble(
VideoDataQuery
.COL_LATITUDE)
[
all
...]
VideoItemFactory.java
62
Cursor c = mContext.getContentResolver().query(uri,
VideoDataQuery
.QUERY_PROJECTION, null,
76
return queryAll(
VideoDataQuery
.CONTENT_URI,
83
.forCameraPath(mContentResolver, uri,
VideoDataQuery
.QUERY_PROJECTION, lastId,
VideoDataQuery.java
22
public class
VideoDataQuery
{
VideoItem.java
124
cr.delete(
VideoDataQuery
.CONTENT_URI,
Completed in 77 milliseconds