Searched refs:mLoader (Results 1 - 12 of 12) 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)));
H A DPackageIconLoaderTest.java62 assertNull(mLoader.getIcon(uri));
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapEmailSettings.java36 BluetoothMapEmailSettingsLoader mLoader = new BluetoothMapEmailSettingsLoader(this); field in class:BluetoothMapEmailSettings
45 mGroups = mLoader.parsePackages(true);
51 BluetoothMapEmailSettingsAdapter adapter = new BluetoothMapEmailSettingsAdapter(this,listView, mGroups, mLoader.getAccountsEnabledCount());
H A DBluetoothMapEmailAppObserver.java55 BluetoothMapEmailSettingsLoader mLoader; field in class:BluetoothMapEmailAppObserver
62 mLoader = new BluetoothMapEmailSettingsLoader(mContext);
63 mFullList = mLoader.parsePackages(false); /* Get the current list of apps */
88 ArrayList<BluetoothMapEmailSettingsItem> newAccountList = mLoader.parseAccounts(app);
208 BluetoothMapEmailSettingsItem app = mLoader.createAppItem(rInfo, false);
212 ArrayList<BluetoothMapEmailSettingsItem> newAccountList = mLoader.parseAccounts(app);
/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/Launcher2/src/com/android/launcher2/
H A DWallpaperChooserDialogFragment.java62 private WallpaperLoader mLoader; field in class:WallpaperChooserDialogFragment
87 if (mLoader != null && mLoader.getStatus() != WallpaperLoader.Status.FINISHED) {
88 mLoader.cancel(true);
89 mLoader = null;
182 if (mLoader != null && mLoader.getStatus() != WallpaperLoader.Status.FINISHED) {
183 mLoader.cancel();
185 mLoader = (WallpaperLoader) new WallpaperLoader().execute(position);
301 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/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/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();
519 return mLoader;
/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/Gallery/src/com/android/camera/
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))) {
H A DImageGallery.java92 private ImageLoader mLoader; field in class:ImageGallery
140 mLoader = new ImageLoader(getContentResolver(), mHandler);
362 mLoader.stop();
403 mGvs.setLoader(mLoader);

Completed in 296 milliseconds