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 20 import com.android.gallery3d.data.MediaObject;
74 public MediaObject createMediaObject(Path path) {
77 return new EmptyAlbumSet(path, MediaObject.nextVersionNumber());
83 public static boolean isPicasaImage(MediaObject object) {
87 public static String getImageTitle(MediaObject image) {
91 public static int getImageSize(MediaObject image) {
95 public static String getContentType(MediaObject image) {
99 public static long getDateTaken(MediaObject image) {
103 public static double getLatitude(MediaObject image) {
107 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) {
LocalSource.java 81 public MediaObject createMediaObject(Path path) {
177 MediaObject object = mApplication.getDataManager().getMediaObject(item);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
MenuExecutor.java 25 import com.android.gallery3d.data.MediaObject;
148 boolean supportDelete = (supported & MediaObject.SUPPORT_DELETE) != 0;
149 boolean supportRotate = (supported & MediaObject.SUPPORT_ROTATE) != 0;
150 boolean supportCrop = (supported & MediaObject.SUPPORT_CROP) != 0;
151 boolean supportShare = (supported & MediaObject.SUPPORT_SHARE) != 0;
152 boolean supportSetAs = (supported & MediaObject.SUPPORT_SETAS) != 0;
153 boolean supportShowOnMap = (supported & MediaObject.SUPPORT_SHOW_ON_MAP) != 0;
154 boolean supportCache = (supported & MediaObject.SUPPORT_CACHE) != 0;
155 boolean supportEdit = (supported & MediaObject.SUPPORT_EDIT) != 0;
156 boolean supportInfo = (supported & MediaObject.SUPPORT_INFO) != 0
    [all...]
ActionModeHandler.java 24 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;
180 int operation = MediaObject.SUPPORT_ALL;
193 operation &= ~MediaObject.SUPPORT_EDIT;
227 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 23 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;
64 private long mSourceVersion = MediaObject.INVALID_DATA_VERSION;
81 Arrays.fill(mItemVersion, MediaObject.INVALID_DATA_VERSION);
82 Arrays.fill(mSetVersion, MediaObject.INVALID_DATA_VERSION);
152 mItemVersion[slotIndex] = MediaObject.INVALID_DATA_VERSION;
153 mSetVersion[slotIndex] = MediaObject.INVALID_DATA_VERSION;
SlideshowDataAdapter.java 22 import com.android.gallery3d.data.MediaObject;
60 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;
SlideshowPage.java 22 import com.android.gallery3d.data.MediaObject;
300 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 1047 milliseconds

1 2