HomeSort by relevance Sort by last modified time
    Searched defs:remove (Results 126 - 150 of 3610) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/v8/benchmarks/spinning-balls/
splay-tree.js 95 * @param {number} key Key to find and remove from the tree.
98 SplayTree.prototype.remove = function(key) { method in class:SplayTree
  /external/volley/src/main/java/com/android/volley/toolbox/
NoCache.java 43 public void remove(String key) { method in class:NoCache
  /frameworks/base/core/java/android/content/
CursorEntityIterator.java 90 public void remove() { method in class:CursorEntityIterator
91 throw new UnsupportedOperationException("remove not supported by EntityIterators");
  /frameworks/base/core/java/android/util/
FastImmutableArraySet.java 74 public void remove() { method in class:FastImmutableArraySet.FastIterator
SparseSetArray.java 58 * Remove a value from index n.
61 public boolean remove(int n, T value) { method in class:SparseSetArray
66 final boolean ret = set.remove(value);
68 mData.remove(n);
74 * Remove all values from index n.
76 public void remove(int n) { method in class:SparseSetArray
77 mData.remove(n);
  /frameworks/base/services/core/java/com/android/server/policy/
SplashScreenSurface.java 48 public void remove() { method in class:SplashScreenSurface
  /frameworks/compile/mclinker/lib/LD/
RelocData.cpp 51 Relocation& RelocData::remove(Relocation& pRelocation) { function in class:mcld::RelocData
53 Relocation* rel = m_Relocations.remove(iter);
  /frameworks/layoutlib/bridge/src/android/os/
Looper_Accessor.java 27 Looper.sThreadLocal.remove();
  /frameworks/support/app-toolkit/common/src/main/java/androidx/arch/core/internal/
FastSafeIterableMap.java 55 public V remove(@NonNull K key) { method in class:FastSafeIterableMap
56 V removed = super.remove(key);
57 mHashMap.remove(key);
  /frameworks/support/slices/core/src/main/java/androidx/slice/core/
SliceQuery.java 83 SliceItem remove = list.remove(0); local
84 if (!contains(container, remove)) {
85 ret = remove;
255 SliceItem item = items.remove(0);
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
MessageQueueTest.java 102 public void remove() { method in class:MessageQueueTest
  /hardware/qcom/gps/msm8909w_3100/core/data-items/common/
ClientIndex.cpp 71 int ClientIndex <CT,DIT> :: remove (CT client) { function in class:ClientIndex
80 void ClientIndex <CT,DIT> :: remove (const list <DIT> & r, list <CT> & out) { function in class:ClientIndex
106 void ClientIndex <CT,DIT> :: remove function in class:ClientIndex
DataItemIndex.cpp 63 int DataItemIndex <CT,DIT> :: remove (DIT id) { function in class:DataItemIndex
72 void DataItemIndex <CT,DIT> :: remove (const list <CT> & r, list <DIT> & out) { function in class:DataItemIndex
104 void DataItemIndex <CT,DIT> :: remove function in class:DataItemIndex
  /libcore/ojluni/src/main/java/java/util/
AbstractQueue.java 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
46 * elements. Methods {@link #add add}, {@link #remove remove}, and
112 public E remove() { method in class:AbstractQueue
121 * Retrieves, but does not remove, the head of this queue. This method
AbstractSet.java 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
144 * from this set with the iterator's <tt>remove</tt> method. If
148 * set's <tt>remove</tt> method.
152 * <tt>iterator</tt> method does not implement the <tt>remove</tt> method.
165 * @see #remove(Object)
174 modified |= remove(i.next());
178 i.remove();
ListIterator.java 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
43 * Note that the {@link #remove} and {@link #set(Object)} methods are
143 * @throws UnsupportedOperationException if the {@code remove}
146 * {@code previous} have been called, or {@code remove} or
150 void remove(); method in interface:ListIterator
155 * This call can be made only if neither {@link #remove} nor {@link
168 * {@code previous} have been called, or {@code remove} or
  /libcore/ojluni/src/main/java/java/util/concurrent/
BlockingQueue.java 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
78 * <td><b>Remove</b></td>
79 * <td>{@link #remove remove()}</td>
108 * possible to remove an arbitrary element from a queue using
109 * {@code remove(x)}. However, such operations are in general
289 * insert or remove an element.
311 boolean remove(Object o); method in interface:BlockingQueue
  /libcore/support/src/test/java/tests/support/
Support_CollectionTest.java 54 // remove
55 assertTrue("CollectionTest - a) remove did not work", col
56 .remove(new Integer(101)));
57 assertTrue("CollectionTest - b) remove did not work", !col
69 col.remove(new Integer(101));
  /packages/apps/Dialer/java/com/android/dialer/simulator/
SimulatorConnectionsBank.java 34 /** Remove a connection from bank. */
35 void remove(Connection connection); method in interface:SimulatorConnectionsBank
  /packages/apps/Launcher3/src/com/android/launcher3/util/
LongArrayMap.java 61 public void remove() { method in class:LongArrayMap.ValueIterator
  /packages/apps/Messaging/src/com/android/messaging/util/
LongSparseSet.java 52 * Remove an element from the set
54 * @param key The element to remove
56 public void remove(long key) { method in class:LongSparseSet
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DownloadManagerWrapper.java 54 public void remove(final long... ids) { method in class:DownloadManagerWrapper
57 mDownloadManager.remove(ids);
62 // We couldn't remove the file from DownloadManager. Apparently, the database can't
65 Log.e(TAG, "Can't remove files with ID " + ids + " from download manager", e);
  /packages/services/BuiltInPrintService/src/com/android/bips/util/
PriorityLock.java 42 mPriorities.remove((Integer) priority);
  /packages/services/Car/car-lib/src/com/android/car/internal/
CarRatedFloatListeners.java 52 * Remove given listener from the list and update rate if necessary.
57 public boolean remove(T listener) { method in class:CarRatedFloatListeners
58 mListenersToRate.remove(listener);
CarRatedListeners.java 48 * Remove given listener from the list and update rate if necessary.
53 public boolean remove(EventListenerType listener) { method in class:CarRatedListeners
54 mListenersToRate.remove(listener);

Completed in 652 milliseconds

1 2 3 4 56 7 8 91011>>