HomeSort by relevance Sort by last modified time
    Searched refs:restartLoader (Results 1 - 25 of 57) sorted by null

1 2 3

  /packages/apps/Contacts/src/com/android/contacts/interactions/
TestLoaderManager.java 207 public <D> Loader<D> restartLoader(int id, Bundle args, LoaderCallbacks<D> callback) {
208 return mDelegate.restartLoader(id, args, callback);
ContactDeletionInteraction.java 175 getLoaderManager().restartLoader(R.id.dialog_delete_contact_loader_id, args, this);
  /frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
PhotoViewFragment.java 442 getLoaderManager().restartLoader(LOADER_ID_THUMBNAIL, null, this);
562 getLoaderManager().restartLoader(LOADER_ID_THUMBNAIL, null,
565 getLoaderManager().restartLoader(LOADER_ID_PHOTO, null, PhotoViewFragment.this);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderCursor.java 141 getLoaderManager().restartLoader(0, null, this);
LoaderRetained.java 146 getLoaderManager().restartLoader(0, null, this);
  /development/samples/Support13Demos/src/com/example/android/supportv13/app/
CursorFragment.java 89 getLoaderManager().restartLoader(0, null, this);
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderCursorSupport.java 124 getLoaderManager().restartLoader(0, null, CursorLoaderListFragment.this);
LoaderRetainedSupport.java 126 getLoaderManager().restartLoader(0, null, CursorLoaderListFragment.this);
  /packages/apps/Contacts/src/com/android/contacts/list/
JoinContactListFragment.java 112 // When this method is called, Uri to be used may be changed. We should use restartLoader()
114 getLoaderManager().restartLoader(JoinContactListAdapter.PARTITION_ALL_CONTACTS,
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ChangedContacts.java 136 manager.restartLoader(ID_CHANGE_LOADER, null, this);
143 manager.restartLoader(ID_DELETE_LOADER, null, this);
  /development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
ContactDetailFragment.java 168 // restartLoader() is used instead of initLoader() as this method may be called
170 getLoaderManager().restartLoader(ContactDetailQuery.QUERY_ID, null, this);
171 getLoaderManager().restartLoader(ContactAddressQuery.QUERY_ID, null, this);
ContactsListFragment.java 371 getLoaderManager().restartLoader(
394 getLoaderManager().restartLoader(
    [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewActivity.java 214 getSupportLoaderManager().restartLoader(LOADER_PHOTO_LIST, null, this);
301 getSupportLoaderManager().restartLoader(LOADER_PHOTO_LIST, null, this);
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupDetailFragment.java 203 getLoaderManager().restartLoader(LOADER_METADATA, null, mGroupMetadataLoaderListener);
210 getLoaderManager().restartLoader(LOADER_MEMBERS, null, mGroupMemberListLoaderListener);
GroupEditorFragment.java 494 getLoaderManager().restartLoader(LOADER_NEW_GROUP_MEMBER, args, mContactLoaderListener);
    [all...]
  /packages/apps/Browser/src/com/android/browser/
AddBookmarkPage.java 239 manager.restartLoader(LOADER_ID_FOLDER_CONTENTS, null, this);
320 manager.restartLoader(LOADER_ID_FOLDER_CONTENTS, null, this);
500 getLoaderManager().restartLoader(LOADER_ID_EDIT_INFO, null,
699 getLoaderManager().restartLoader(LOADER_ID_ACCOUNTS, null, this);
743 manager.restartLoader(LOADER_ID_FOLDER_CONTENTS, null, this);
    [all...]
BrowserHistoryPage.java 218 getLoaderManager().restartLoader(LOADER_HISTORY, null, this);
219 getLoaderManager().restartLoader(LOADER_MOST_VISITED, null, this);
BrowserBookmarksPage.java 136 lm.restartLoader(id, args, this);
401 lm.restartLoader(LOADER_ACCOUNTS, null, this);
  /frameworks/base/core/java/android/app/
LoaderManager.java 163 public abstract <D> Loader<D> restartLoader(int id, Bundle args,
648 public <D> Loader<D> restartLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) {
654 if (DEBUG) Log.v(TAG, "restartLoader in " + this + ": args=" + args);
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
LoaderManager.java 144 public abstract <D> Loader<D> restartLoader(int id, Bundle args,
592 public <D> Loader<D> restartLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) {
598 if (DEBUG) Log.v(TAG, "restartLoader in " + this + ": args=" + args);
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/list/
PhoneFavoriteFragment.java 104 // Use restartLoader() to make LoaderManager to load the section again.
105 getLoaderManager().restartLoader(
443 // Use initLoader() instead of restartLoader() to refraining unnecessary reload.
535 // Use restartLoader() to make LoaderManager to load the section again.
536 getLoaderManager().restartLoader(LOADER_ID_ALL_CONTACTS, null, mAllContactsLoaderListener);
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactLoaderFragment.java 172 getLoaderManager().restartLoader(LOADER_DETAILS, args, mDetailLoaderListener);
  /packages/apps/Email/src/com/android/email/activity/
ActionBarController.java 408 mLoaderManager.restartLoader(LOADER_ID_ACCOUNT_LIST, null,
  /packages/apps/Settings/src/com/android/settings/inputmethod/
KeyboardLayoutDialogFragment.java 196 getLoaderManager().restartLoader(0, null, this);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactEntryListFragment.java 370 getLoaderManager().restartLoader(partitionIndex, args, this);

Completed in 624 milliseconds

1 2 3