/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
H A D | ChangeNotifier.java | 31 public ChangeNotifier(MediaSet set, Uri uri, GalleryApp application) { argument 33 application.getDataManager().registerChangeNotifier(uri, this);
|
H A D | ComboSource.java | 27 public ComboSource(GalleryApp application) { argument 29 mApplication = application;
|
H A D | FilterSource.java | 28 public FilterSource(GalleryApp application) { argument 30 mApplication = application;
|
H A D | ClusterSource.java | 37 public ClusterSource(GalleryApp application) { argument 39 mApplication = application;
|
H A D | ComboAlbumSet.java | 31 public ComboAlbumSet(Path path, GalleryApp application, MediaSet[] mediaSets) { argument 37 mName = application.getResources().getString(
|
H A D | ImageCacheRequest.java | 36 public ImageCacheRequest(GalleryApp application, argument 38 mApplication = application;
|
H A D | MtpSource.java | 32 public MtpSource(GalleryApp application) { argument 34 mApplication = application;
|
H A D | ClusterAlbumSet.java | 35 public ClusterAlbumSet(Path path, GalleryApp application, argument 38 mApplication = application;
|
H A D | MtpDeviceSet.java | 41 public MtpDeviceSet(Path path, GalleryApp application, MtpContext mtpContext) { argument 43 mApplication = application; 44 mNotifier = new ChangeNotifier(this, Uri.parse("mtp://"), application); 46 mName = application.getResources().getString(R.string.set_label_mtp_devices);
|
H A D | MtpDevice.java | 44 public MtpDevice(Path path, GalleryApp application, int deviceId, argument 47 mApplication = application; 50 mDataManager = application.getDataManager(); 53 mNotifier = new ChangeNotifier(this, Uri.parse("mtp://"), application); 58 public MtpDevice(Path path, GalleryApp application, int deviceId, argument 60 this(path, application, deviceId,
|
H A D | MtpImage.java | 51 MtpImage(Path path, GalleryApp application, int deviceId, argument 54 mContext = application.getAndroidContext(); 63 mThreadPool = application.getThreadPool();
|
H A D | LocalAlbum.java | 54 public LocalAlbum(Path path, GalleryApp application, int bucketId, argument 57 mApplication = application; 58 mResolver = application.getContentResolver(); 79 mNotifier = new ChangeNotifier(this, mBaseUri, application); 82 public LocalAlbum(Path path, GalleryApp application, int bucketId, argument 84 this(path, application, bucketId, isImage, 85 LocalAlbumSet.getBucketName(application.getContentResolver(), 136 GalleryApp application, boolean isImage, ArrayList<Integer> ids) { 157 ContentResolver resolver = application.getContentResolver(); 158 DataManager dataManager = application 135 getMediaItemById( GalleryApp application, boolean isImage, ArrayList<Integer> ids) argument [all...] |
H A D | LocalAlbumSet.java | 99 public LocalAlbumSet(Path path, GalleryApp application) { argument 101 mApplication = application; 103 mNotifierImage = new ChangeNotifier(this, mWatchUriImage, application); 104 mNotifierVideo = new ChangeNotifier(this, mWatchUriVideo, application); 105 mName = application.getResources().getString(
|
H A D | LocalImage.java | 88 public LocalImage(Path path, GalleryApp application, Cursor cursor) { argument 90 mApplication = application; 94 public LocalImage(Path path, GalleryApp application, int id) { argument 96 mApplication = application; 160 LocalImageRequest(GalleryApp application, Path path, int type, argument 162 super(application, path, type, getTargetSize(type));
|
H A D | LocalVideo.java | 80 public LocalVideo(Path path, GalleryApp application, Cursor cursor) { argument 82 mApplication = application; 149 LocalVideoRequest(GalleryApp application, Path path, int type, argument 151 super(application, path, type, LocalImage.getTargetSize(type));
|
H A D | UriImage.java | 61 public UriImage(GalleryApp application, Path path, Uri uri) { argument 64 mApplication = Utils.checkNotNull(application);
|
H A D | DataManager.java | 102 public DataManager(GalleryApp application) { argument 103 mApplication = application; 104 mDefaultMainHandler = new Handler(application.getMainLooper());
|
H A D | DownloadCache.java | 83 public DownloadCache(GalleryApp application, File root, long capacity) { argument 85 mApplication = Utils.checkNotNull(application); 87 mDatabase = new DatabaseHelper(application.getAndroidContext())
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
H A D | IconCache.java | 32 * Cache of application icons. Icons can be made from any thread. 152 * Fill in "application" with the icon and label for "info." 154 public void getTitleAndIcon(ApplicationInfo application, ResolveInfo info, argument 157 CacheEntry entry = cacheLocked(application.componentName, info, labelCache); 159 application.title = entry.title; 160 application.iconBitmap = entry.icon;
|
/packages/apps/Gallery2/src_pd/com/android/gallery3d/picasasource/ |
H A D | PicasaSource.java | 49 public PicasaSource(GalleryApp application) { argument 51 mApplication = application;
|