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

12 3 4 5 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/collect/
PeekingIterator.java 41 * {@link #remove()}.
68 void remove(); method in interface:PeekingIterator
AbstractMapBasedMultiset.java 121 public void remove() { method
124 backingEntries.remove();
157 * a more efficient remove() call.
186 public void remove() {
193 entryIterator.remove();
236 @Override public int remove(@Nullable Object element, int occurrences) {
254 backingMap.remove(element);
269 existingCounter = backingMap.remove(element);
EvictingQueue.java 105 delegate.remove();
121 public boolean remove(Object object) { method in class:EvictingQueue
122 return delegate().remove(checkNotNull(object));
FilteredMultimapValues.java 61 public boolean remove(@Nullable Object o) { method in class:FilteredMultimapValues
67 unfilteredItr.remove();
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/internal/
ArrayIterator.java 28 public void remove() { method in class:ArrayIterator
29 throw new UnsupportedOperationException("cannot remove items from an array");
  /external/icu/icu4c/source/i18n/
pluralaffix.cpp 27 current->remove();
33 PluralAffix::remove() { function in class:PluralAffix
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
NOPMDCAdapter.java 52 public void remove(String key) { method in class:NOPMDCAdapter
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/spi/
MDCAdapter.java 58 * Remove the the context identified by the <code>key</code> parameter.
65 public void remove(String key); method in interface:MDCAdapter
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SDNodeOrdering.h 39 void remove(const SDNode *Node) { function in class:llvm::SDNodeOrdering
  /external/testng/src/test/java/test/dataprovider/
FailingIterableDataProvider.java 29 public void remove() {} method
MyIterator.java 25 public void remove() { method in class:MyIterator
  /external/testng/src/test/java/test/timeout/
TimeOutTest.java 45 public void remove() { method in class:TimeOutTest
46 throw new UnsupportedOperationException("remove");
  /frameworks/support/recyclerview-selection/src/main/java/androidx/recyclerview/selection/
MutableSelection.java 63 public boolean remove(@NonNull K key) { method in class:MutableSelection
64 return super.remove(key);
  /frameworks/support/transition/src/main/java/androidx/transition/
ViewGroupOverlayApi18.java 47 public void remove(@NonNull Drawable drawable) { method in class:ViewGroupOverlayApi18
48 mViewGroupOverlay.remove(drawable);
57 public void remove(@NonNull View view) { method in class:ViewGroupOverlayApi18
58 mViewGroupOverlay.remove(view);
ViewOverlayApi18.java 46 public void remove(@NonNull Drawable drawable) { method in class:ViewOverlayApi18
47 mViewOverlay.remove(drawable);
  /hardware/interfaces/audio/common/all-versions/default/
EffectMap.cpp 47 void EffectMap::remove(effect_handle_t handle) { function in class:android::EffectMap
  /libcore/luni/src/test/java/libcore/java/util/
OldAbstractSetTest.java 42 public void remove() { method in class:OldAbstractSetTest.Mock_AbstractSet
78 public void remove() {
  /libcore/ojluni/src/main/java/java/net/
CookieStore.java 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
108 * Remove a cookie from store.
114 * @param cookie the cookie to remove
120 public boolean remove(URI uri, HttpCookie cookie); method in interface:CookieStore
124 * Remove all cookies in this cookie store.
  /libcore/ojluni/src/main/java/java/util/
Dictionary.java 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
154 abstract public V remove(Object key); method in class:Dictionary
Queue.java 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
67 * <td><b>Remove</b></td>
68 * <td>{@link Queue#remove remove()}</td>
84 * element which would be removed by a call to {@link #remove() } or
98 * <p>The {@link #remove()} and {@link #poll()} methods remove and
102 * implementation to implementation. The {@code remove()} and
104 * queue is empty: the {@code remove()} method throws an exception,
108 * not remove, the head of the queue
182 E remove(); method in interface:Queue
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
MutableSelection.java 31 public boolean remove(String id) { method in class:MutableSelection
32 return super.remove(id);
  /system/chre/util/include/chre/util/
fixed_size_blocking_queue_impl.h 77 bool FixedSizeBlockingQueue<ElementType, kSize>::remove(size_t index) { function in class:chre::FixedSizeBlockingQueue
79 return mQueue.remove(index);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
FsDirectory.java 69 * Remove the entry with the given name from this directory.
71 * @param name name of the entry to remove
74 public void remove(String name) throws IOException; method in interface:FsDirectory
  /external/guava/guava/src/com/google/common/base/
Converter.java 174 * <p>The returned iterable's iterator supports {@code remove()} if the input iterator does. After
175 * a successful {@code remove()} call, {@code fromIterable} no longer contains the corresponding
196 public void remove() { method
197 fromIterator.remove();
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
AbstractMapBasedMultiset.java 118 public void remove() { method
121 backingEntries.remove();
154 * a more efficient remove() call.
183 public void remove() {
190 entryIterator.remove();
233 @Override public int remove(@Nullable Object element, int occurrences) {
251 backingMap.remove(element);
266 existingCounter = backingMap.remove(element);

Completed in 640 milliseconds

12 3 4 5 6 7 8 91011>>