Searched defs:mLoader (Results 1 - 9 of 9) sorted by relevance

/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
H A DIconLoaderTest.java30 protected IconLoader mLoader; field in class:IconLoaderTest
34 mLoader = create();
40 assertNull(mLoader.getIcon(null));
41 assertNull(mLoader.getIcon(""));
42 assertNull(mLoader.getIcon("0"));
43 assertNotNull(mLoader.getIcon(String.valueOf(android.R.drawable.star_on)));
/packages/apps/Gallery2/src/com/android/photos/shims/
H A DBitmapJobDrawable.java38 private ThumbnailLoader mLoader; field in class:BitmapJobDrawable
51 if (mLoader != null) {
52 mLoader.cancelLoad();
61 mLoader = new ThumbnailLoader(this);
62 mLoader.startLoad();
70 Bitmap bitmap = mLoader.getBitmap();
/packages/apps/Settings/src/com/android/settings/applications/
H A DAppOpsCategory.java91 final AppListLoader mLoader; field in class:AppOpsCategory.PackageIntentReceiver
94 mLoader = loader;
99 mLoader.getContext().registerReceiver(this, filter);
104 mLoader.getContext().registerReceiver(this, sdFilter);
109 mLoader.onContentChanged();
/packages/apps/Calendar/src/com/android/calendar/month/
H A DMonthByWeekFragment.java91 private CursorLoader mLoader; field in class:MonthByWeekFragment
138 if (!mShouldLoad || mLoader == null) {
147 mLoader.setUri(mEventUri);
148 mLoader.startLoading();
149 mLoader.onContentChanged();
161 mLoader = (CursorLoader) getLoaderManager().initLoader(0, null,
223 if (mLoader != null) {
224 mLoader.stopLoading();
314 mLoader = (CursorLoader) getLoaderManager().initLoader(0, null, this);
373 if (prevHideDeclined != mHideDeclined && mLoader !
[all...]
/packages/apps/Calendar/src/com/android/calendar/widget/
H A DCalendarAppWidgetService.java129 private CursorLoader mLoader; field in class:CalendarAppWidgetService.CalendarFactory
141 if (mLoader != null) {
142 mLoader.forceLoad();
153 if (mLoader != null && version >= currentVersion.get()) {
155 mLoader.setUri(uri);
156 mLoader.setSelection(selection);
160 mLoader.forceLoad();
195 if (mLoader != null) {
196 mLoader.reset();
379 mLoader
[all...]
/packages/apps/Dialer/src/com/android/dialer/interactions/
H A DPhoneNumberInteraction.java289 private CursorLoader mLoader; field in class:PhoneNumberInteraction
352 if (mLoader != null) {
353 mLoader.reset();
371 mLoader = new CursorLoader(mContext,
377 mLoader.registerListener(0, this);
378 mLoader.startLoading();
516 return mLoader;
/packages/apps/Launcher2/src/com/android/launcher2/
H A DWallpaperChooserDialogFragment.java61 private WallpaperLoader mLoader; field in class:WallpaperChooserDialogFragment
86 if (mLoader != null && mLoader.getStatus() != WallpaperLoader.Status.FINISHED) {
87 mLoader.cancel(true);
88 mLoader = null;
181 if (mLoader != null && mLoader.getStatus() != WallpaperLoader.Status.FINISHED) {
182 mLoader.cancel();
184 mLoader = (WallpaperLoader) new WallpaperLoader().execute(position);
306 mLoader
[all...]
/packages/apps/Gallery/src/com/android/camera/
H A DImageGallery.java92 private ImageLoader mLoader; field in class:ImageGallery
140 mLoader = new ImageLoader(getContentResolver(), mHandler);
362 mLoader.stop();
403 mGvs.setLoader(mLoader);
H A DGridViewSpecial.java115 private ImageLoader mLoader; field in class:GridViewSpecial
166 mLoader = loader;
238 mAllImages, mLoader, mDrawAdapter, mSpec, mColumns, width,
448 Assert(mLoader != null);
729 private final ImageLoader mLoader; field in class:ImageBlockManager
752 mLoader = loader;
792 int[] tags = mLoader.clearQueue();
1054 mLoader.getBitmap(image, cb, pos);
1163 if (mLoader.cancel(mImageList.getImageAt(pos))) {

Completed in 297 milliseconds