Home
last modified time | relevance | path

Searched refs:application (Results 1 – 25 of 45) sorted by relevance

12

/packages/apps/Gallery2/src/com/android/gallery3d/data/
DLocalAlbum.java61 public LocalAlbum(Path path, GalleryApp application, int bucketId, in LocalAlbum() argument
64 mApplication = application; in LocalAlbum()
65 mResolver = application.getContentResolver(); in LocalAlbum()
86 mNotifier = new ChangeNotifier(this, mBaseUri, application); in LocalAlbum()
89 public LocalAlbum(Path path, GalleryApp application, int bucketId, in LocalAlbum() argument
91 this(path, application, bucketId, isImage, in LocalAlbum()
93 application.getContentResolver(), bucketId)); in LocalAlbum()
163 GalleryApp application, boolean isImage, ArrayList<Integer> ids) { in getMediaItemById() argument
184 ContentResolver resolver = application.getContentResolver(); in getMediaItemById()
185 DataManager dataManager = application.getDataManager(); in getMediaItemById()
[all …]
DChangeNotifier.java31 public ChangeNotifier(MediaSet set, Uri uri, GalleryApp application) { in ChangeNotifier() argument
33 application.getDataManager().registerChangeNotifier(uri, this); in ChangeNotifier()
36 public ChangeNotifier(MediaSet set, Uri[] uris, GalleryApp application) { in ChangeNotifier() argument
39 application.getDataManager().registerChangeNotifier(uris[i], this); in ChangeNotifier()
DLocalAlbumSet.java61 public LocalAlbumSet(Path path, GalleryApp application) { in LocalAlbumSet() argument
63 mApplication = application; in LocalAlbumSet()
64 mHandler = new Handler(application.getMainLooper()); in LocalAlbumSet()
66 mNotifier = new ChangeNotifier(this, mWatchUris, application); in LocalAlbumSet()
67 mName = application.getResources().getString( in LocalAlbumSet()
DLocalImage.java107 public LocalImage(Path path, GalleryApp application, Cursor cursor) { in LocalImage() argument
109 mApplication = application; in LocalImage()
113 public LocalImage(Path path, GalleryApp application, int id) { in LocalImage() argument
115 mApplication = application; in LocalImage()
182 LocalImageRequest(GalleryApp application, Path path, long timeModified, in LocalImageRequest() argument
184 super(application, path, timeModified, type, in LocalImageRequest()
DSecureAlbum.java56 public SecureAlbum(Path path, GalleryApp application, MediaItem unlock) { in SecureAlbum() argument
58 mContext = application.getAndroidContext(); in SecureAlbum()
59 mDataManager = application.getDataManager(); in SecureAlbum()
60 mNotifier = new ChangeNotifier(this, mWatchUris, application); in SecureAlbum()
DEmptyAlbumImage.java26 public EmptyAlbumImage(Path path, GalleryApp application) { in EmptyAlbumImage() argument
27 super(path, application, R.drawable.placeholder_empty); in EmptyAlbumImage()
DUnlockImage.java26 public UnlockImage(Path path, GalleryApp application) { in UnlockImage() argument
27 super(path, application, R.drawable.placeholder_locked); in UnlockImage()
DCameraShortcutImage.java26 public CameraShortcutImage(Path path, GalleryApp application) { in CameraShortcutImage() argument
27 super(path, application, R.drawable.placeholder_camera); in CameraShortcutImage()
DLocalVideo.java75 public LocalVideo(Path path, GalleryApp application, Cursor cursor) { in LocalVideo() argument
77 mApplication = application; in LocalVideo()
162 LocalVideoRequest(GalleryApp application, Path path, long timeModified, in LocalVideoRequest() argument
164 super(application, path, timeModified, type, in LocalVideoRequest()
DComboSource.java27 public ComboSource(GalleryApp application) { in ComboSource() argument
29 mApplication = application; in ComboSource()
DSnailSource.java30 public SnailSource(GalleryApp application) { in SnailSource() argument
32 mApplication = application; in SnailSource()
DClusterSource.java37 public ClusterSource(GalleryApp application) { in ClusterSource() argument
39 mApplication = application; in ClusterSource()
DActionImage.java36 public ActionImage(Path path, GalleryApp application, int resourceId) { in ActionImage() argument
38 mApplication = Utils.checkNotNull(application); in ActionImage()
DComboAlbumSet.java32 public ComboAlbumSet(Path path, GalleryApp application, MediaSet[] mediaSets) { in ComboAlbumSet() argument
38 mName = application.getResources().getString( in ComboAlbumSet()
DFilterSource.java40 public FilterSource(GalleryApp application) { in FilterSource() argument
42 mApplication = application; in FilterSource()
DImageCacheRequest.java37 public ImageCacheRequest(GalleryApp application, in ImageCacheRequest() argument
39 mApplication = application; in ImageCacheRequest()
DClusterAlbumSet.java36 public ClusterAlbumSet(Path path, GalleryApp application, in ClusterAlbumSet() argument
39 mApplication = application; in ClusterAlbumSet()
DDataManager.java111 public DataManager(GalleryApp application) { in DataManager() argument
112 mApplication = application; in DataManager()
113 mDefaultMainHandler = new Handler(application.getMainLooper()); in DataManager()
/packages/apps/Launcher3/src/com/android/launcher3/
DIconCache.java433 public synchronized void getTitleAndIcon(AppInfo application, in getTitleAndIcon() argument
435 UserHandleCompat user = info == null ? application.user : info.getUser(); in getTitleAndIcon()
436 CacheEntry entry = cacheLocked(application.componentName, info, user, in getTitleAndIcon()
438 application.title = Utilities.trim(entry.title); in getTitleAndIcon()
439 application.iconBitmap = getNonNullIcon(entry, user); in getTitleAndIcon()
440 application.contentDescription = entry.contentDescription; in getTitleAndIcon()
441 application.usingLowResIcon = entry.isLowResIcon; in getTitleAndIcon()
447 public synchronized void updateTitleAndIcon(AppInfo application) { in updateTitleAndIcon() argument
448 CacheEntry entry = cacheLocked(application.componentName, null, application.user, in updateTitleAndIcon()
449 false, application.usingLowResIcon); in updateTitleAndIcon()
[all …]
/packages/apps/UnifiedEmail/unified_src/
DREADME2 in the UnifiedEmail application
6 application to test multiple content sources
9 AccountCacheProvider. All subsequent uris will actually be handled by the appropriate application.
/packages/apps/Camera2/src/com/android/camera/settings/
DManagedSwitchPreference.java90 Application application = ((Activity) context).getApplication(); in getCameraApp() local
91 if (application instanceof CameraApp) { in getCameraApp()
92 return (CameraApp) application; in getCameraApp()
/packages/apps/Launcher2/src/com/android/launcher2/
DIconCache.java181 public void getTitleAndIcon(ApplicationInfo application, LauncherActivityInfo info, in getTitleAndIcon() argument
184 CacheEntry entry = cacheLocked(application.componentName, info, labelCache, in getTitleAndIcon()
187 application.title = entry.title; in getTitleAndIcon()
188 application.iconBitmap = entry.icon; in getTitleAndIcon()
189 application.contentDescription = entry.contentDescription; in getTitleAndIcon()
/packages/apps/TV/src/com/android/tv/analytics/
DStubAnalytics.java26 public static StubAnalytics getInstance(Application application) { in getInstance() argument
27 return new StubAnalytics(application); in getInstance()
/packages/apps/ContactsCommon/src/com/android/contacts/commonbind/analytics/
DAnalyticsUtil.java27 public static void initialize(Application application) { } in initialize() argument
49 public static void sendEvent(Application application, String category, String action, in sendEvent() argument
/packages/apps/Gallery2/src_pd/com/android/gallery3d/picasasource/
DPicasaSource.java48 public PicasaSource(GalleryApp application) { in PicasaSource() argument
50 mApplication = application; in PicasaSource()

12