Searched refs:remove (Results 1 - 25 of 382) sorted by path

1234567891011>>

/frameworks/base/core/java/android/accounts/
H A DAccountManager.java105 * the server. The application must call {@link #invalidateAuthToken} to remove
535 * @param account The {@link Account} to remove
751 // TODO: remove this when the bug is found that sometimes causes a null bundle to be
1864 * memory leaks, you must remove this listener before then. Normally
1917 * @param listener The previously added listener to remove
1928 mAccountsUpdatedListeners.remove(listener);
H A DAccountManagerService.java267 mUserDataCache.remove(account);
268 mAuthTokenCache.remove(account);
766 mAuthTokenCache.remove(account);
1471 if (mSessions.remove(toString()) == null) {
1601 result.remove(AccountManager.KEY_AUTHTOKEN);
2117 mAccountCache.remove(account.type);
2124 mUserDataCache.remove(account);
2125 mAuthTokenCache.remove(account);
2177 userDataForAccount.remove(key);
2191 authTokensForAccount.remove(ke
[all...]
/frameworks/base/core/java/android/animation/
H A DAnimator.java159 mListeners.remove(listener);
H A DAnimatorSet.java602 cloneListeners.remove(listener);
695 // rule fired - remove the dependency and listener and check to
702 mNode.tmpDependencies.remove(dependencyToRemove);
738 mPlayingSet.remove(animation);
786 * - remove r as a dependency from any other node
810 node.nodeDependencies.remove(root);
893 * but removing each dependency as it is satisfied. We do not want to remove
H A DLayoutTransition.java45 * the same add/remove logic. The animations that run due to those events are one that animates
47 * items in the container that change due to the add/remove occurrence. Users of
60 * animation to remove it will run first, then the animations of the other children in the
202 * remove these listeners and clear out the map.
663 // add/remove operations are run at once on a container; each one will trigger
683 pendingAnimations.remove(child);
698 pendingAnimations.remove(child);
747 pendingAnimations.remove(child);
757 layoutChangeListenerMap.remove(child);
777 layoutChangeListenerMap.remove(chil
[all...]
H A DObjectAnimator.java85 mValuesMap.remove(oldName);
107 mValuesMap.remove(oldName);
H A DValueAnimator.java645 delayedAnims.remove(anim);
670 endingAnims.remove(anim);
853 mUpdateListeners.remove(listener);
1031 sAnimations.get().remove(this);
1032 sPendingAnimations.get().remove(this);
1033 sDelayedAnims.get().remove(this);
/frameworks/base/core/java/android/app/
H A DActivity.java581 * long as possible, but eventually will need to remove old processes when
583 * Lifecycle</a>, the decision about which process to remove is intimately
1620 mAllLoaderManagers.remove(index);
1771 mManagedCursors.remove(i);
2700 * Prevents a context menu to be shown for the given view. This method will remove the
2961 * will not throw an exception if you try to remove an ID that does not
2981 mManagedDialogs.remove(id);
H A DActivityThread.java1506 // XXX need to remove entries when weak references go away
1757 list.remove(listener);
2218 mBackupAgents.remove(packageName);
2385 Service s = mServices.remove(token);
2717 listeners = mOnPauseListeners.remove(r.activity);
3118 mActivities.remove(token);
3263 mRelaunchingActivities.remove(i);
3527 it.remove();
3673 mPackages.remove(packages[i]);
3674 mResourcePackages.remove(package
[all...]
H A DAlarmManager.java276 mService.remove(operation);
H A DApplication.java124 mComponentCallbacks.remove(callback);
136 mActivityLifecycleCallbacks.remove(callback);
H A DApplicationPackageManager.java749 sIconCache.remove(name);
777 it.remove();
788 it.remove();
863 sStringCache.remove(name);
H A DBackStackRecord.java113 "BSE " + bse + " set remove fragment #" + mOps[pos]);
386 public FragmentTransaction remove(Fragment fragment) { method in class:BackStackRecord
H A DDialogFragment.java67 * remove itself when the dialog is dismissed.
219 * is dismissed, a new transaction will be executed to remove it from
254 * be popped. Otherwise, a new transaction will be committed to remove
288 ft.remove(this);
H A DDownloadManager.java901 // called with nothing to remove!
917 * Cancel downloads and remove them from the download manager. Each download will be stopped if
921 * @param ids the IDs of the downloads to remove
924 public int remove(long... ids) { method in class:DownloadManager
H A DFragmentManager.java139 /** @hide -- remove once prebuilts are in. */
515 mBackStackChangeListeners.remove(listener);
1074 f.setIndex(mAvailIndices.remove(mAvailIndices.size()-1));
1114 if (DEBUG) Log.v(TAG, "remove: " + fragment + " nesting=" + fragment.mBackStackNesting);
1117 mAdded.remove(fragment);
1185 // We are not already in back stack, so need to remove the fragment.
1186 mAdded.remove(fragment);
1305 int index = mAvailBackStackIndices.remove(mAvailBackStackIndices.size()-1);
1430 final BackStackRecord bss = mBackStack.remove(last);
1472 states.add(mBackStack.remove(
[all...]
H A DFragmentTransaction.java47 * essentially the same as calling {@link #remove(Fragment)} for all
71 public abstract FragmentTransaction remove(Fragment fragment); method in class:FragmentTransaction
H A DIAlarmManager.aidl32 void remove(in PendingIntent operation);
H A DInstrumentation.java670 mActivityMonitors.remove(monitor);
687 mActivityMonitors.remove(monitor);
706 mActivityMonitors.remove(monitor);
715 * @param monitor The monitor to remove.
721 mActivityMonitors.remove(monitor);
1606 mWaitingActivities.remove(mWaiter);
H A DLoadedApk.java508 mReceivers.remove(context);
528 mUnregisteredReceivers.remove(context);
531 mServices.remove(context);
550 mUnboundServices.remove(context);
592 map.remove(r);
594 mReceivers.remove(context);
852 map.remove(c);
855 mServices.remove(context);
1004 old = mActiveConnections.remove(name);
1048 mActiveConnections.remove(nam
[all...]
H A DLoaderManager.java81 * you should remove all use of the old data (since it will be released
116 * remove any references it has to the Loader's data.
420 mInactiveLoaders.remove(mId);
H A DLocalActivityManager.java391 mActivities.remove(id);
392 mActivityArray.remove(r);
H A DQueuedWork.java65 * (e.g. SharedPreferences) will pretty quickly call remove()
73 public static void remove(Runnable finisher) { method in class:QueuedWork
74 sPendingWorkFinishers.remove(finisher);
H A DSharedPreferencesImpl.java175 mListeners.remove(listener);
255 // TODO: remove the need to call awaitLoadedLocked() when
325 public Editor remove(String key) { method in class:SharedPreferencesImpl.EditorImpl
355 QueuedWork.remove(awaitCommit);
408 mMap.remove(k);
/frameworks/base/core/java/android/app/backup/
H A DBackupAgent.java247 filterSet.remove(filesDir);
251 filterSet.remove(databaseDir);
255 filterSet.remove(sharedPrefsDir);
346 File file = scanQueue.remove(0);

Completed in 182 milliseconds

1234567891011>>