HomeSort by relevance Sort by last modified time
    Searched refs:MediaObject (Results 1 - 25 of 33) sorted by null

1 2

  /packages/apps/Gallery2/src_pd/com/android/gallery3d/picasasource/
PicasaSource.java 27 import com.android.gallery3d.data.MediaObject;
76 public MediaObject createMediaObject(Path path) {
79 return new EmptyAlbumSet(path, MediaObject.nextVersionNumber());
89 public static boolean isPicasaImage(MediaObject object) {
93 public static String getImageTitle(MediaObject image) {
97 public static int getImageSize(MediaObject image) {
101 public static String getContentType(MediaObject image) {
105 public static long getDateTaken(MediaObject image) {
109 public static double getLatitude(MediaObject image) {
113 public static double getLongitude(MediaObject image)
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/data/
MockSource.java 37 public MediaObject createMediaObject(Path path) {
38 MediaObject obj;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MediaObject.java 21 public abstract class MediaObject {
23 private static final String TAG = "MediaObject";
64 public MediaObject(Path path, long version) {
128 return ++MediaObject.sVersionSerial;
MediaSource.java 41 public abstract MediaObject createMediaObject(Path path);
80 MediaObject obj = pid.path.getObject();
ComboSource.java 37 public MediaObject createMediaObject(Path path) {
FilterSource.java 39 public MediaObject createMediaObject(Path path) {
MediaItem.java 25 public abstract class MediaItem extends MediaObject {
UriSource.java 38 public MediaObject createMediaObject(Path path) {
Path.java 31 private WeakReference<MediaObject> mObject;
68 public void setObject(MediaObject object) {
71 mObject = new WeakReference<MediaObject>(object);
75 public MediaObject getObject() {
215 MediaObject obj = p.getObject();
ClusterSource.java 60 public MediaObject createMediaObject(Path path) {
MtpSource.java 43 public MediaObject createMediaObject(Path path) {
DataManager.java 144 public MediaObject peekMediaObject(Path path) {
152 public MediaObject getMediaObject(Path path) {
153 MediaObject obj = path.getObject();
162 MediaObject object = source.createMediaObject(path);
169 public MediaObject getMediaObject(String s) {
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
MenuExecutor.java 35 import com.android.gallery3d.data.MediaObject;
146 boolean supportDelete = (supported & MediaObject.SUPPORT_DELETE) != 0;
147 boolean supportRotate = (supported & MediaObject.SUPPORT_ROTATE) != 0;
148 boolean supportCrop = (supported & MediaObject.SUPPORT_CROP) != 0;
149 boolean supportShare = (supported & MediaObject.SUPPORT_SHARE) != 0;
150 boolean supportSetAs = (supported & MediaObject.SUPPORT_SETAS) != 0;
151 boolean supportShowOnMap = (supported & MediaObject.SUPPORT_SHOW_ON_MAP) != 0;
152 boolean supportCache = (supported & MediaObject.SUPPORT_CACHE) != 0;
153 boolean supportEdit = (supported & MediaObject.SUPPORT_EDIT) != 0;
154 boolean supportInfo = (supported & MediaObject.SUPPORT_INFO) != 0
    [all...]
ActionModeHandler.java 40 import com.android.gallery3d.data.MediaObject;
53 private static final int SUPPORT_MULTIPLE_MASK = MediaObject.SUPPORT_DELETE
54 | MediaObject.SUPPORT_ROTATE | MediaObject.SUPPORT_SHARE
55 | MediaObject.SUPPORT_CACHE | MediaObject.SUPPORT_IMPORT;
179 int operation = MediaObject.SUPPORT_ALL;
194 operation &= ~MediaObject.SUPPORT_EDIT;
228 if ((support & MediaObject.SUPPORT_SHARE) != 0) {
IconDrawer.java 19 import com.android.gallery3d.data.MediaObject;
112 if (mediaType == MediaObject.MEDIA_TYPE_VIDEO) {
  /external/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.h 34 class MediaObject;
145 Phonon::MediaObject* m_mediaObject;
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AlbumDataAdapter.java 26 import com.android.gallery3d.data.MediaObject;
60 private long mSourceVersion = MediaObject.INVALID_DATA_VERSION;
77 Arrays.fill(mItemVersion, MediaObject.INVALID_DATA_VERSION);
78 Arrays.fill(mSetVersion, MediaObject.INVALID_DATA_VERSION);
136 mItemVersion[slotIndex] = MediaObject.INVALID_DATA_VERSION;
137 mSetVersion[slotIndex] = MediaObject.INVALID_DATA_VERSION;
AlbumSetDataAdapter.java 26 import com.android.gallery3d.data.MediaObject;
63 private long mSourceVersion = MediaObject.INVALID_DATA_VERSION;
80 Arrays.fill(mItemVersion, MediaObject.INVALID_DATA_VERSION);
81 Arrays.fill(mSetVersion, MediaObject.INVALID_DATA_VERSION);
151 mItemVersion[slotIndex] = MediaObject.INVALID_DATA_VERSION;
152 mSetVersion[slotIndex] = MediaObject.INVALID_DATA_VERSION;
SlideshowDataAdapter.java 24 import com.android.gallery3d.data.MediaObject;
63 private long mDataVersion = MediaObject.INVALID_DATA_VERSION;
FilterUtils.java 20 import com.android.gallery3d.data.MediaObject;
179 mediaType = MediaObject.MEDIA_TYPE_IMAGE;
182 mediaType = MediaObject.MEDIA_TYPE_VIDEO;
PhotoDataAdapter.java 24 import com.android.gallery3d.data.MediaObject;
65 private static final long VERSION_OUT_OF_RANGE = MediaObject.nextVersionNumber();
142 private long mSourceVersion = MediaObject.INVALID_DATA_VERSION;
168 Arrays.fill(mChanges, MediaObject.INVALID_DATA_VERSION);
200 return MediaObject.INVALID_DATA_VERSION;
556 ? MediaObject.INVALID_DATA_VERSION
558 if (version == MediaObject.INVALID_DATA_VERSION) continue;
PhotoPage.java 42 import com.android.gallery3d.data.MediaObject;
297 photo.getMediaType() == MediaObject.MEDIA_TYPE_VIDEO);
311 supportedOperations &= ~MediaObject.SUPPORT_EDIT;
321 if (mCurrentPhoto.getMediaType() != MediaObject.MEDIA_TYPE_IMAGE) {
SlideshowPage.java 31 import com.android.gallery3d.data.MediaObject;
294 private long mDataVersion = MediaObject.INVALID_DATA_VERSION;
  /packages/apps/Gallery2/src/com/android/gallery3d/gadget/
MediaSetSource.java 22 import com.android.gallery3d.data.MediaObject;
41 private long mSourceVersion = MediaObject.INVALID_DATA_VERSION;
  /packages/apps/Gallery2/src/com/android/gallery3d/provider/
GalleryProvider.java 24 import com.android.gallery3d.data.MediaObject;
122 MediaObject object = mDataManager.getMediaObject(path);
163 private Cursor queryPicasaItem(MediaObject image, String[] projection,
205 MediaObject object = mDataManager.getMediaObject(path);

Completed in 1517 milliseconds

1 2