Searched refs:remove (Results 201 - 225 of 313) sorted by relevance

1234567891011>>

/libcore/jsr166-tests/src/test/java/jsr166/
H A DCollection8Test.java93 assertTrue(c.remove(elt));
H A DSynchronousQueueTest.java321 * remove() throws NoSuchElementException if no active putter
328 q.remove();
449 * iterator remove throws ISE
457 it.remove();
615 * remove(null), contains(null) always return false
620 assertFalse(q.remove(null));
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DProviderTest.java75 p.remove("MessageDigest.ASH-1");
76 p.remove("MessageDigest.abc");
77 p.remove("Alg.Alias.MessageDigest.ASH1");
323 * Class under test for Object remove(Object)
326 Object o = p.remove("MessageDigest.SHA-1");
/libcore/ojluni/src/main/java/java/sql/
H A DSQLException.java348 public void remove() {
/libcore/ojluni/src/main/java/java/util/
H A DArrayDeque.java55 * {@link #remove(Object) remove},
59 * {@link #iterator iterator.remove()},
65 * {@code remove} method, the iterator will generally throw a {@link
104 * element that would be removed by remove() or pop()); or an
428 public E remove() { method in class:ArrayDeque
447 * Retrieves, but does not remove, the head of the queue represented by
461 * Retrieves, but does not remove, the head of the queue represented by
515 * <p>This method is called delete rather than remove to emphasize
516 * that its semantics differ from those of {@link List#remove(in
631 public void remove() { method in class:ArrayDeque.DeqIterator
686 public void remove() { method in class:ArrayDeque.DescendingIterator
730 public boolean remove(Object o) { method in class:ArrayDeque
[all...]
H A DVector.java53 * {@link ListIterator#remove() remove} or
546 * <p>This method is identical in functionality to the {@link #remove(int)}
548 * {@code remove} method returns the old value that was stored at the
551 * @param index the index of the object to remove
632 * {@link #remove(Object)} method (which is part of the
798 public boolean remove(Object o) { method in class:Vector
828 public synchronized E remove(int index) { method in class:Vector
1154 public void remove() { method in class:Vector.Itr
1159 Vector.this.remove(lastRe
[all...]
H A DHashtable.java91 * <tt>remove</tt> method, the iterator will throw a {@link
491 public synchronized V remove(Object key) { method in class:Hashtable
631 * the iterator's own <tt>remove</tt> operation), the results of
634 * <tt>Iterator.remove</tt>, <tt>Set.remove</tt>,
657 public boolean remove(Object o) { method in class:Hashtable.KeySet
658 return Hashtable.this.remove(o) != null;
670 * the iterator's own <tt>remove</tt> operation, or through the
674 * mapping from the map, via the <tt>Iterator.remove</tt>,
675 * <tt>Set.remove</t
711 public boolean remove(Object o) { method in class:Hashtable.EntrySet
936 public synchronized boolean remove(Object key, Object value) { method in class:Hashtable
1401 public void remove() { method in class:Hashtable.Enumerator
[all...]
H A DResourceBundle.java1421 // resource bundles have been nulled out, remove all related
1425 cacheList.remove(((CacheKeyReference)ref).getCacheKey());
1446 // Otherwise, remove the cached one since we can't keep
1450 cacheList.remove(cacheKey, bundleRef);
1624 cacheList.remove(cacheKey, bundleRef);
1651 // remove the bundle from the cache, but
1655 cacheList.remove(cacheKey, bundleRef);
1664 // We just remove NONEXISTENT_BUNDLE from the cache.
1665 cacheList.remove(cacheKey, bundleRef);
1761 set.remove(ke
[all...]
H A DWeakHashMap.java81 * <tt>null</tt> and the <tt>remove</tt> method to return
109 * <tt>remove</tt> method, the iterator will throw a {@link
589 public V remove(Object key) { method in class:WeakHashMap
615 /** Special version of remove needed by Entry set */
817 public void remove() { method in class:WeakHashMap.HashIterator
823 WeakHashMap.this.remove(currentKey);
858 * the iterator's own <tt>remove</tt> operation), the results of
861 * <tt>Iterator.remove</tt>, <tt>Set.remove</tt>,
888 public boolean remove(Objec method in class:WeakHashMap.KeySet
982 public boolean remove(Object o) { method in class:WeakHashMap.EntrySet
[all...]
H A DTreeMap.java41 * {@code containsKey}, {@code get}, {@code put} and {@code remove}
76 * {@code remove} method, the iterator will throw a {@link
603 public V remove(Object key) { method in class:TreeMap
809 * the iterator's own {@code remove} operation), the results of
812 * {@code Iterator.remove}, {@code Set.remove},
849 * (except through the iterator's own {@code remove} operation),
852 * mapping from the map, via the {@code Iterator.remove},
853 * {@code Collection.remove}, {@code removeAll},
879 * the iterator's own {@code remove} operatio
1043 public boolean remove(Object o) { method in class:TreeMap.Values
1076 public boolean remove(Object o) { method in class:TreeMap.EntrySet
1155 public boolean remove(Object o) { method in class:TreeMap.KeySet
1229 public void remove() { method in class:TreeMap.PrivateEntryIterator
1277 public void remove() { method in class:TreeMap.DescendingKeyIterator
1530 public final V remove(Object key) { method in class:TreeMap.NavigableSubMap
1666 public boolean remove(Object o) { method in class:TreeMap.NavigableSubMap.EntrySetView
1759 public void remove() { method in class:TreeMap.NavigableSubMap.SubMapEntryIterator
1773 public void remove() { method in class:TreeMap.NavigableSubMap.DescendingSubMapEntryIterator
1788 public void remove() { method in class:TreeMap.NavigableSubMap.SubMapKeyIterator
1826 public void remove() { method in class:TreeMap.NavigableSubMap.DescendingSubMapKeyIterator
[all...]
H A DLinkedHashMap.java85 * <tt>remove</tt>), assuming the hash function disperses elements
125 * <tt>remove</tt> method, the iterator will throw a {@link
321 void afterNodeInsertion(boolean evict) { // possibly remove eldest
501 * Returns <tt>true</tt> if this map should remove its eldest entry.
504 * with the opportunity to remove the eldest entry each time a new one
550 * the iterator's own <tt>remove</tt> operation), the results of
553 * <tt>Iterator.remove</tt>, <tt>Set.remove</tt>,
579 public final boolean remove(Object key) { method in class:LinkedHashMap.LinkedKeySet
604 * (except through the iterator's own <tt>remove</t
687 public final boolean remove(Object o) { method in class:LinkedHashMap.LinkedEntrySet
765 public final void remove() { method in class:LinkedHashMap.LinkedHashIterator
[all...]
/libcore/ojluni/src/main/java/java/util/prefs/
H A DPreferences.java495 public abstract void remove(String key); method in class:Preferences
1067 * @param pcl The preference change listener to remove.
1112 * @param ncl The <tt>NodeChangeListener</tt> to remove.
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DAsynchronousFileChannelImpl.java186 fileLockTable.remove(fli);
195 * Invoked by FileLockImpl to release the given file lock and remove it
/libcore/ojluni/src/main/java/sun/security/jca/
H A DProviders.java267 threadLists.remove();
H A DProviderList.java50 * cloning and synchronization in consumers. The add() and remove() style
110 public static ProviderList remove(ProviderList providerList, String name) { method in class:ProviderList
498 public void remove() {
/libcore/ojluni/src/main/java/sun/security/util/
H A DManifestEntryVerifier.java112 // ugh. we should be able to remove this at some point.
187 * the first time we have verified this object, remove its
223 signers = sigFileSigners.remove(name);
/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
H A DmySSLSession.java142 Object obj = table.remove(s);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DLinkedHashSetTest.java204 * java.util.LinkedHashSet#remove(java.lang.Object)
208 // java.util.LinkedHashSet.remove(java.lang.Object)
210 hs.remove(new Integer(98));
211 assertTrue("Failed to remove element", !hs.contains(new Integer(98)));
216 assertTrue("Cannot handle null", s.remove(null));
H A DCollectionsTest.java1454 synchMap.keySet().remove(objArray[50].toString());
1456 "Removing a key from the keySet of the synchronized map did not remove it from the synchronized map: ",
1459 "Removing a key from the keySet of the synchronized map did not remove it from the original map",
1577 synchMap.keySet().remove(objArray[50].toString());
1579 "Removing a key from the keySet of the synchronized map did not remove it from the synchronized map",
1582 "Removing a key from the keySet of the synchronized map did not remove it from the original map",
1648 c.remove(new Object());
1710 c.remove(new Object());
1776 c.remove(new Object());
1851 c.remove(ne
[all...]
/libcore/json/src/main/java/org/json/
H A DJSONArray.java312 public Object remove(int index) { method in class:JSONArray
316 return values.remove(index);
/libcore/luni/src/test/java/com/android/org/bouncycastle/jce/provider/
H A DCertBlacklistTest.java320 // remove the bad one
321 bl.remove("");
336 // remove the bad one
337 bl.remove("");
/libcore/ojluni/src/main/java/java/util/jar/
H A DAttributes.java179 public Object remove(Object name) { method in class:Attributes
180 return map.remove(name);
/libcore/luni/src/test/java/libcore/java/security/
H A DProviderTest.java136 // remove from remaining, assert unknown if missing
138 if (remainingAlgorithms == null || !remainingAlgorithms.remove(algorithm)) {
169 remainingExpected.remove(type);
199 cipherIt.remove();
204 remainingExpected.remove("Cipher");
437 remainingTypes.remove(type);
1079 provAndParam -> provAndParam.provider.remove(provAndParam.operationParameters);
/libcore/ojluni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java75 * {@code remove} operations and their variants. Insertion, removal,
268 * the base-level action, to add or remove index nodes. This adds
272 * unreachable upon return from a public remove operation, thus
1589 public V remove(Object key) { method in class:ConcurrentSkipListMap
1817 * via the {@code Iterator.remove}, {@code Set.remove},
1850 * mapping from the map, via the {@code Iterator.remove},
1851 * {@code Collection.remove}, {@code removeAll},
1875 * via the {@code Iterator.remove}, {@code Set.remove},
1967 public boolean remove(Object key, Object value) { method in class:ConcurrentSkipListMap
2306 public void remove() { method in class:ConcurrentSkipListMap.Iter
2366 public boolean remove(Object o) { return m.remove(o) != null; } method in class:ConcurrentSkipListMap.KeySet
2499 public boolean remove(Object o) { method in class:ConcurrentSkipListMap.EntrySet
2838 public V remove(Object key) { method in class:ConcurrentSkipListMap.SubMap
2890 public boolean remove(Object key, Object value) { method in class:ConcurrentSkipListMap.SubMap
3158 public void remove() { method in class:ConcurrentSkipListMap.SubMap.SubMapIter
[all...]
/libcore/luni/src/test/java/libcore/java/security/cert/
H A DCertificateFactoryTest.java437 it1.remove();
438 fail("Should not be able to remove from iterator");
443 it2.remove();
444 fail("Should not be able to remove from iterator");
520 actualCerts.remove(0);

Completed in 575 milliseconds

1234567891011>>