Searched defs:remove (Results 51 - 75 of 110) sorted by relevance

12345

/frameworks/base/core/java/android/util/
H A DArraySet.java42 * you have no control over this shrinking -- if you set a capacity and then remove an
411 * @param object the object to remove.
415 public boolean remove(Object object) { method in class:ArraySet
433 if (DEBUG) Log.d(TAG, "remove: shrink from " + mHashes.length + " to 0");
445 if (DEBUG) Log.d(TAG, "remove: shrink from " + mHashes.length + " to " + n);
453 if (DEBUG) Log.d(TAG, "remove: copy from 0-" + index + " to 0");
458 if (DEBUG) Log.d(TAG, "remove: copy from " + (index+1) + "-" + mSize
466 if (DEBUG) Log.d(TAG, "remove: move " + (index+1) + "-" + mSize
673 removed |= remove(value);
H A DMapCollections.java62 public void remove() { method in class:MapCollections.ArrayIterator
96 public void remove() { method in class:MapCollections.MapIterator
220 public boolean remove(Object object) { method in class:MapCollections.EntrySet
305 public boolean remove(Object object) { method in class:MapCollections.KeySet
399 public boolean remove(Object object) { method in class:MapCollections.ValuesCollection
470 map.remove(it.next());
480 it.remove();
/frameworks/base/core/java/android/view/
H A DViewOverlay.java68 * @see #remove(Drawable)
80 public void remove(Drawable drawable) { method in class:ViewOverlay
81 mOverlayViewGroup.remove(drawable);
99 * via the add/remove methods in ViewOverlay, Views are added/removed via
153 public void remove(Drawable drawable) { method in class:ViewOverlay.OverlayViewGroup
155 mDrawables.remove(drawable);
193 public void remove(View view) { method in class:ViewOverlay.OverlayViewGroup
H A DInputEventConsistencyVerifier.java207 KeyState state = findKeyState(deviceId, source, keyCode, /*remove*/ false);
226 KeyState state = findKeyState(deviceId, source, keyCode, /*remove*/ true);
534 final KeyState state = findKeyState(deviceId, source, keyCode, /*remove*/ false);
668 private KeyState findKeyState(int deviceId, int source, int keyCode, boolean remove) { argument
674 if (remove) {
/frameworks/base/core/java/android/widget/
H A DArrayAdapter.java237 * @param object The object to remove.
239 public void remove(T object) { method in class:ArrayAdapter
242 mOriginalValues.remove(object);
244 mObjects.remove(object);
292 * {@link #insert}, {@link #remove}, {@link #clear}) automatically call
/frameworks/base/core/java/com/android/internal/util/
H A DArrayUtils.java238 * @param element The element to remove.
363 public static <T> ArraySet<T> remove(ArraySet<T> cur, T val) { method in class:ArrayUtils
367 cur.remove(val);
387 public static <T> ArrayList<T> remove(ArrayList<T> cur, T val) { method in class:ArrayUtils
391 cur.remove(val);
/frameworks/base/libs/hwui/
H A DPatchCache.cpp110 void PatchCache::remove(Vector<patch_pair_t>& patchesToRemove, Res_png_9patch* patch) { function in class:android::uirenderer::PatchCache
144 remove(patchesToRemove, patch);
165 mCache.remove(*pair.getFirst());
H A DPathCache.cpp366 void PathCache::remove(Vector<PathDescription>& pathsToRemove, const path_pair_t& pair) { function in class:android::uirenderer::PathCache
392 remove(pathsToRemove, pair);
399 mCache.remove(pathsToRemove.itemAt(i));
444 mCache.remove(entry);
448 // remove the entry from the cache
449 mCache.remove(entry);
473 mCache.remove(entry);
/frameworks/base/libs/hwui/renderthread/
H A DRenderThread.cpp106 void TaskQueue::remove(RenderTask* task) { function in class:android::uirenderer::renderthread::TaskQueue
110 "Cannot remove a task that isn't in the queue!");
178 return 0; // remove the callback
320 void RenderThread::remove(RenderTask* task) { function in class:android::uirenderer::renderthread::RenderThread
322 mQueue.remove(task);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DSelectPrinterActivity.java239 mAnnounceFilterResult.remove();
309 transaction.remove(oldFragment);
588 remove();
592 public void remove() { method in class:SelectPrinterActivity.AnnounceFilterResult
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationData.java168 public Entry remove(String key, RankingMap ranking) { method in class:NotificationData
169 Entry removed = mEntries.remove(key);
231 mSortedAndFiltered.remove(i);
/frameworks/base/services/core/java/com/android/server/fingerprint/
H A DFingerprintService.java97 mClients.remove(token);
105 mClients.remove(token);
148 mClients.remove(mClients.keyAt(i));
158 mClients.remove(mClients.keyAt(i));
168 mClients.remove(mClients.keyAt(i));
181 mClients.remove(mClients.keyAt(i));
206 mClients.remove(mClients.keyAt(i));
250 Slog.w(TAG, "remove(" + token + "): No listener registered");
278 mClients.remove(token);
282 mClients.remove(toke
303 public void remove(IBinder token, int fingerprintId, int userId) { method in class:FingerprintService.FingerprintServiceWrapper
[all...]
/frameworks/base/services/core/java/com/android/server/job/
H A DJobStore.java125 boolean replaced = mJobSet.remove(jobStatus);
161 public boolean remove(JobStatus jobStatus) { method in class:JobStore
162 boolean removed = mJobSet.remove(jobStatus);
165 Slog.d(TAG, "Couldn't remove job: didn't exist: " + jobStatus);
/frameworks/base/services/core/java/com/android/server/pm/
H A DInstaller.java136 public int remove(String name, int userId) { method in class:Installer
137 StringBuilder builder = new StringBuilder("remove");
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentTransaction.java74 * essentially the same as calling {@link #remove(Fragment)} for all
99 public abstract FragmentTransaction remove(Fragment fragment); method in class:FragmentTransaction
/frameworks/support/v4/java/android/support/v4/util/
H A DSimpleArrayMap.java446 * @param key The key of the mapping to remove.
450 public V remove(Object key) { method in class:SimpleArrayMap
468 if (DEBUG) Log.d(TAG, "remove: shrink from " + mHashes.length + " to 0");
480 if (DEBUG) Log.d(TAG, "remove: shrink from " + mHashes.length + " to " + n);
488 if (DEBUG) Log.d(TAG, "remove: copy from 0-" + index + " to 0");
493 if (DEBUG) Log.d(TAG, "remove: copy from " + (index+1) + "-" + mSize
502 if (DEBUG) Log.d(TAG, "remove: move " + (index+1) + "-" + mSize
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DChildHelper.java113 * @param view The view to remove.
121 if (mBucket.remove(index)) {
122 mHiddenViews.remove(view);
125 Log.d(TAG, "remove View off:" + index + "," + this);
142 if (mBucket.remove(offset)) {
143 mHiddenViews.remove(view);
257 mBucket.remove(offset);
323 * @param view The view to remove.
329 if (mHiddenViews.remove(view) && DEBUG) {
335 mBucket.remove(inde
423 boolean remove(int index) { method in class:ChildHelper.Bucket
[all...]
H A DPositionMap.java113 public void remove(int key) { method in class:PositionMap
131 * @param size Number of mappings to remove
/frameworks/volley/src/com/android/volley/toolbox/
H A DDiskBasedCache.java121 remove(key);
222 public synchronized void remove(String key) { method in class:DiskBasedCache
277 iterator.remove();
313 mEntries.remove(key);
/frameworks/wilhelm/src/itf/
H A DIObject.c561 // If object is published, then remove it from exposure to sync thread and debugger
596 // The remove hook is called with mutex locked
598 VoidHook remove = MPH_init_table[x->mMPH].mRemove; local
599 if (NULL != remove) {
600 (*remove)(thisItf);
/frameworks/base/core/java/android/app/
H A DSharedPreferencesImpl.java193 mListeners.remove(listener);
273 // TODO: remove the need to call awaitLoadedLocked() when
344 public Editor remove(String key) { method in class:SharedPreferencesImpl.EditorImpl
374 QueuedWork.remove(awaitCommit);
425 // equivalent to calling remove on that key.
430 mMap.remove(k);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentTasksLoader.java142 public void remove(TaskDescription td) { method in class:RecentTasksLoader
143 mLoadedTasks.remove(td);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTaskStack.java92 boolean remove(Task t) { method in class:FilteredTaskList
94 boolean removed = mTasks.remove(t);
221 mTaskList.remove(t);
222 // Remove it from the group as well, and if it is empty, remove the group
248 mTaskList.remove(t);
249 // Remove it from the group as well, and if it is empty, remove the group
359 mGroups.remove(group);
360 mAffinitiesGroups.remove(group.affiliation);
/frameworks/base/services/core/java/com/android/server/
H A DIntentResolver.java192 mFilters.remove(f);
329 public void remove() { method in class:IntentResolver.IteratorWrapper
333 mI.remove();
654 map.remove(name);
H A DNativeDaemonConnector.java413 event = mResponseQueue.remove(sequenceNumber, timeout, logCmd);
534 // The availableResponseCount member is used to track when we can remove this
539 // (it goes to zero) we can remove this object from the mPendingCmds list.
581 PendingCmd pendingCmd = mPendingCmds.remove();
590 // if a matching remove call has already retrieved this we can remove this
592 if (found.availableResponseCount == 0) mPendingCmds.remove(found);
601 public NativeDaemonEvent remove(int cmdNum, int timeoutMs, String logCmd) { method in class:NativeDaemonConnector.ResponseQueue
615 // if a matching add call has already retrieved this we can remove this
617 if (found.availableResponseCount == 0) mPendingCmds.remove(foun
[all...]

Completed in 636 milliseconds

12345