Searched defs:remove (Results 76 - 100 of 136) sorted by last modified time

123456

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationData.java268 public Entry remove(String key, RankingMap ranking) { method in class:NotificationData
271 removed = mEntries.remove(key);
H A DRemoteInputController.java48 entry /* contains */, null /* remove */);
59 pruneWeakThenRemoveAndContains(null /* contains */, entry /* remove */);
69 mSpinning.remove(key);
89 return pruneWeakThenRemoveAndContains(entry /* contains */, null /* remove */);
96 pruneWeakThenRemoveAndContains(null /* contains */, null /* remove */);
101 * Prunes dangling weak references, removes entries referring to {@param remove} and returns
103 * @param remove if non-null, removes this entry from the active remote inputs
107 NotificationData.Entry contains, NotificationData.Entry remove) {
111 if (item == null || item == remove) {
112 mOpen.remove(
106 pruneWeakThenRemoveAndContains( NotificationData.Entry contains, NotificationData.Entry remove) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialogController.java192 mCallbacks.remove(callback);
581 public void remove(Callbacks callback) { method in class:VolumeDialogController.C
582 mCallbackMap.remove(callback);
874 mState.states.remove(stream);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
H A DMultiSelectManager.java154 // Update the selection to remove any disappeared IDs.
248 boolean itemChanged = selected ? mSelection.add(id) : mSelection.remove(id);
486 mSelection.remove(id);
758 // Now, iterate through the changes and actually add/remove them to/from the current
766 mProvisionalSelection.remove(id);
805 boolean remove(String id) { method in class:MultiSelectManager.Selection
807 mSelection.remove(id);
1056 mView.getOverlay().remove(mBand);
1761 mOnSelectionChangedListeners.remove(listener);
/frameworks/base/media/java/android/media/
H A DSubtitleTrack.java141 // remove past cues
143 mActiveCues.remove(cue);
145 it.remove();
174 mCues.remove(cue);
179 mRunsByID.remove(run.mRunID);
190 /* remove all cues (untangle all cross-links) */
417 cues.remove(cue);
419 mCues.remove(timeMs);
446 public void remove(Cue cue) { method in class:SubtitleTrack.CueList
509 public void remove() { method in class:SubtitleTrack.CueList.EntryIterator
[all...]
H A DMediaCodec.java2277 mDequeuedInputBuffers.remove(index);
2475 mDequeuedInputBuffers.remove(index);
2608 mDequeuedOutputBuffers.remove(index);
2610 info = mDequeuedOutputInfos.remove(index);
2669 mDequeuedOutputBuffers.remove(index);
2671 info = mDequeuedOutputInfos.remove(index);
2775 public void remove(int index) { method in class:MediaCodec.BufferMap
2779 mMap.remove(index);
/frameworks/base/libs/hwui/
H A DAnimatorManager.cpp50 // If the animator is already attached to other RenderNode, remove it from that RenderNode's
60 mNewAnimators.erase(std::remove(mNewAnimators.begin(), mNewAnimators.end(), animator),
93 mAnimators.erase(std::remove(mAnimators.begin(), mAnimators.end(), animator), mAnimators.end());
103 bool remove = animator->animate(mContext); local
104 if (remove) {
114 return remove;
H A DPatchCache.cpp106 void PatchCache::remove(Vector<patch_pair_t>& patchesToRemove, Res_png_9patch* patch) { function in class:android::uirenderer::PatchCache
140 remove(patchesToRemove, patch);
161 mCache.remove(*pair.getFirst());
H A DPathCache.cpp378 mCache.remove(pathsToRemove.itemAt(i));
405 mCache.remove(entry);
413 void PathCache::remove(const SkPath* path, const SkPaint* paint) { function in class:android::uirenderer::PathCache
416 mCache.remove(entry);
H A DProgram.cpp194 void Program::remove() { function in class:android::uirenderer::Program
/frameworks/base/libs/hwui/renderthread/
H A DRenderThread.cpp105 void TaskQueue::remove(RenderTask* task) { function in class:android::uirenderer::renderthread::TaskQueue
109 "Cannot remove a task that isn't in the queue!");
200 return 0; // remove the callback
353 void RenderThread::remove(RenderTask* task) { function in class:android::uirenderer::renderthread::RenderThread
355 mQueue.remove(task);
/frameworks/base/location/java/android/location/
H A DGpsStatus.java76 public void remove() { method in class:GpsStatus.SatelliteIterator
H A DLocalListenerHelper.java75 public void remove(@NonNull TListener listener) { method in class:LocalListenerHelper
79 mListeners.remove(listener);
/frameworks/base/core/java/com/android/internal/midi/
H A DEventScheduler.java67 public SchedulableEvent remove() { method in class:EventScheduler.FastEventQueue
125 event = mEventPool.remove();
175 mEventBuffer.remove(lowestTime);
177 event = list.remove();
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java105 // TODO: remove "tcp" from network methods, since we measure total stats.
671 public void remove(TimeBaseObs observer) { method in class:BatteryStatsImpl.TimeBase
672 if (!mObservers.remove(observer)) {
915 mTimeBase.remove(this);
1003 mTimeBase.remove(this);
1114 mTimeBase.remove(this);
1680 mTimerPool.remove(this);
1760 mTimerPool.remove(this);
1833 mMap.remove(OVERFLOW_NAME);
1916 mActiveOverflow.remove(nam
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DArrayUtils.java426 public static @Nullable <T> ArraySet<T> remove(@Nullable ArraySet<T> cur, T val) { method in class:ArrayUtils
430 cur.remove(val);
450 public static @Nullable <T> ArrayList<T> remove(@Nullable ArrayList<T> cur, T val) { method in class:ArrayUtils
454 cur.remove(val);
501 * @param collection The ArrayList from which to remove elements.
515 // Find the next element to remove moving left to right.
537 collection.remove(i);
H A DCallbackRegistry.java24 * A common pattern for callbacks is to receive a notification and then remove
264 mCallbacks.remove(i);
272 * @param callback The callback to remove.
274 public synchronized void remove(C callback) { method in class:CallbackRegistry
276 mCallbacks.remove(callback);
/frameworks/base/core/jni/
H A Dandroid_util_Binder.cpp359 void remove(const sp<JavaDeathRecipient>& recipient);
417 list->remove(this);
505 void DeathRecipientList::remove(const sp<JavaDeathRecipient>& recipient) { function in class:DeathRecipientList
511 LOGDEATH("DRL @ %p : remove JDR %p", this, recipient.get());
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java143 "Instantiate " + bse + " set remove fragment #" + mOps[pos]);
508 public FragmentTransaction remove(Fragment fragment) { method in class:BackStackRecord
833 lastInFragments.remove(containerId);
848 firstOutFragments.remove(containerId);
890 lastInFragments.remove(old.mContainerId);
1150 sharedElementTargets.remove(state.nonExistentView);
1452 * After the transition has started, remove all targets that we added to the transitions
1521 * when they are removed later, a list match will suffice to remove the targets.
1523 * the removeTargets call will remove them unexpectedly.
1620 hiddenFragmentViews.remove(fragmen
[all...]
H A DDownloadManager.java1030 // called with nothing to remove!
1037 * Cancel downloads and remove them from the download manager. Each download will be stopped if
1041 * @param ids the IDs of the downloads to remove
1044 public int remove(long... ids) { method in class:DownloadManager
H A DFragmentTransaction.java59 * essentially the same as calling {@link #remove(Fragment)} for all
84 public abstract FragmentTransaction remove(Fragment fragment); method in class:FragmentTransaction
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.java194 mListeners.remove(listener);
276 // TODO: remove the need to call awaitLoadedLocked() when
347 public Editor remove(String key) { method in class:SharedPreferencesImpl.EditorImpl
377 QueuedWork.remove(awaitCommit);
428 // equivalent to calling remove on that key.
433 mMap.remove(k);
/frameworks/base/core/java/android/content/
H A DContentValues.java209 * @param key the name of the value to remove
211 public void remove(String key) { method in class:ContentValues
212 mValues.remove(key);
H A DCursorEntityIterator.java90 public void remove() { method in class:CursorEntityIterator
91 throw new UnsupportedOperationException("remove not supported by EntityIterators");

Completed in 3247 milliseconds

123456