Searched defs:application (Results 1 - 25 of 27) sorted by relevance

12

/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DCameraShortcutImage.java26 public CameraShortcutImage(Path path, GalleryApp application) { argument
27 super(path, application, R.drawable.placeholder_camera);
H A DEmptyAlbumImage.java26 public EmptyAlbumImage(Path path, GalleryApp application) { argument
27 super(path, application, R.drawable.placeholder_empty);
H A DUnlockImage.java26 public UnlockImage(Path path, GalleryApp application) { argument
27 super(path, application, R.drawable.placeholder_locked);
H A DChangeNotifier.java31 public ChangeNotifier(MediaSet set, Uri uri, GalleryApp application) { argument
33 application.getDataManager().registerChangeNotifier(uri, this);
36 public ChangeNotifier(MediaSet set, Uri[] uris, GalleryApp application) { argument
39 application.getDataManager().registerChangeNotifier(uris[i], this);
H A DComboSource.java27 public ComboSource(GalleryApp application) { argument
29 mApplication = application;
H A DClusterSource.java37 public ClusterSource(GalleryApp application) { argument
39 mApplication = application;
H A DComboAlbumSet.java32 public ComboAlbumSet(Path path, GalleryApp application, MediaSet[] mediaSets) { argument
38 mName = application.getResources().getString(
H A DImageCacheRequest.java37 public ImageCacheRequest(GalleryApp application, argument
39 mApplication = application;
H A DSnailSource.java30 public SnailSource(GalleryApp application) { argument
32 mApplication = application;
H A DActionImage.java36 public ActionImage(Path path, GalleryApp application, int resourceId) { argument
38 mApplication = Utils.checkNotNull(application);
H A DClusterAlbumSet.java36 public ClusterAlbumSet(Path path, GalleryApp application, argument
39 mApplication = application;
H A DFilterSource.java40 public FilterSource(GalleryApp application) { argument
42 mApplication = application;
H A DLocalAlbum.java61 public LocalAlbum(Path path, GalleryApp application, int bucketId, argument
64 mApplication = application;
65 mResolver = application.getContentResolver();
86 mNotifier = new ChangeNotifier(this, mBaseUri, application);
89 public LocalAlbum(Path path, GalleryApp application, int bucketId, argument
91 this(path, application, bucketId, isImage,
93 application.getContentResolver(), bucketId));
163 GalleryApp application, boolean isImage, ArrayList<Integer> ids) {
184 ContentResolver resolver = application.getContentResolver();
185 DataManager dataManager = application
162 getMediaItemById( GalleryApp application, boolean isImage, ArrayList<Integer> ids) argument
[all...]
H A DLocalAlbumSet.java61 public LocalAlbumSet(Path path, GalleryApp application) { argument
63 mApplication = application;
64 mHandler = new Handler(application.getMainLooper());
66 mNotifier = new ChangeNotifier(this, mWatchUris, application);
67 mName = application.getResources().getString(
H A DLocalImage.java107 public LocalImage(Path path, GalleryApp application, Cursor cursor) { argument
109 mApplication = application;
113 public LocalImage(Path path, GalleryApp application, int id) { argument
115 mApplication = application;
182 LocalImageRequest(GalleryApp application, Path path, long timeModified, argument
184 super(application, path, timeModified, type,
H A DLocalVideo.java75 public LocalVideo(Path path, GalleryApp application, Cursor cursor) { argument
77 mApplication = application;
162 LocalVideoRequest(GalleryApp application, Path path, long timeModified, argument
164 super(application, path, timeModified, type,
H A DSecureAlbum.java56 public SecureAlbum(Path path, GalleryApp application, MediaItem unlock) { argument
58 mContext = application.getAndroidContext();
59 mDataManager = application.getDataManager();
60 mNotifier = new ChangeNotifier(this, mWatchUris, application);
H A DUriImage.java62 public UriImage(GalleryApp application, Path path, Uri uri, String contentType) { argument
65 mApplication = Utils.checkNotNull(application);
H A DDataManager.java111 public DataManager(GalleryApp application) { argument
112 mApplication = application;
113 mDefaultMainHandler = new Handler(application.getMainLooper());
/packages/apps/TV/src/com/android/tv/analytics/
H A DStubAnalytics.java26 public static StubAnalytics getInstance(Application application) { argument
27 return new StubAnalytics(application);
/packages/apps/ContactsCommon/src/com/android/contacts/commonbind/analytics/
H A DAnalyticsUtil.java27 public static void initialize(Application application) { } argument
43 * @param application The application the tracker is stored in.
49 public static void sendEvent(Application application, String category, String action, argument
/packages/services/Telephony/src/com/android/phone/
H A DCallLogger.java46 public CallLogger(PhoneGlobals application, CallLogAsync callLogAsync) { argument
47 mApplication = application;
/packages/apps/Launcher2/src/com/android/launcher2/
H A DIconCache.java37 * Cache of application icons. Icons can be made from any thread.
179 * Fill in "application" with the icon and label for "info."
181 public void getTitleAndIcon(ApplicationInfo application, LauncherActivityInfo info, argument
184 CacheEntry entry = cacheLocked(application.componentName, info, labelCache,
187 application.title = entry.title;
188 application.iconBitmap = entry.icon;
189 application.contentDescription = entry.contentDescription;
/packages/apps/Gallery2/src_pd/com/android/gallery3d/picasasource/
H A DPicasaSource.java48 public PicasaSource(GalleryApp application) { argument
50 mApplication = application;
/packages/apps/Messaging/src/com/android/messaging/
H A DFactoryImpl.java78 final BugleApplication application) {
89 factory.mApplication = application;
77 register(final Context applicationContext, final BugleApplication application) argument

Completed in 341 milliseconds

12