Searched refs:remove (Results 26 - 50 of 1913) sorted by relevance

1234567891011>>

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/util/
H A DValueSet.java31 public abstract void remove(Value v); method in class:ValueSet
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/
H A DGraphRemoveCookie.java36 public void remove() { method in class:GraphRemoveCookie
/openjdk10/corba/src/java.corba/share/classes/org/omg/CORBA/
H A DContextList.java52 * method <code>remove</code>.
104 public abstract void remove(int index) throws org.omg.CORBA.Bounds; method in class:ContextList
H A DExceptionList.java108 public abstract void remove(int index) method in class:ExceptionList
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/pept/transport/
H A DInboundConnectionCache.java38 public void remove(Connection connection); method in interface:InboundConnectionCache
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/
H A DConstIterator.java29 /** An Iterator which wraps another and prevents the "remove" method
47 public void remove() { method in class:ConstIterator
/openjdk10/jdk/src/java.base/share/classes/sun/net/www/protocol/http/
H A DAuthCache.java72 * remove the entry from the cache whose pkey is specified and
76 public void remove (String pkey, AuthCacheValue entry); method in interface:AuthCache
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/html/
H A DTextAreaDocument.java50 remove(0, getLength());
/openjdk10/jdk/src/java.base/share/classes/java/util/
H A DDictionary.java154 public abstract V remove(Object key); method in class:Dictionary
H A DIterator.java36 * <li> Iterators allow the caller to remove elements from the
93 * @throws UnsupportedOperationException if the {@code remove}
97 * yet been called, or the {@code remove} method has already
101 default void remove() { method in interface:Iterator
102 throw new UnsupportedOperationException("remove");
112 * collection in any way (even by calling the {@link #remove remove} method
H A DListIterator.java43 * 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
/openjdk10/jdk/src/java.base/share/classes/java/net/
H A DCookieStore.java114 * @param cookie the cookie to remove
120 public boolean remove(URI uri, HttpCookie cookie); method in interface:CookieStore
/openjdk10/jdk/src/jdk.httpserver/share/classes/sun/net/httpserver/
H A DContextList.java76 public synchronized void remove (String protocol, String path) method in class:ContextList
81 throw new IllegalArgumentException ("cannot remove element from list");
83 list.remove (ctx);
86 public synchronized void remove (HttpContextImpl context) method in class:ContextList
91 list.remove (ctx);
/openjdk10/jdk/src/java.scripting/share/classes/javax/script/
H A DBindings.java125 public Object remove(Object key); method in interface:Bindings
/openjdk10/jdk/test/java/lang/ref/
H A DPhantomReferentClearing.java79 if (Q1.remove(ENQUEUE_TIMEOUT) != null) {
88 if (Q1.remove(ENQUEUE_TIMEOUT) == null) {
90 } else if (Q2.remove(ENQUEUE_TIMEOUT) != null) {
97 if (Q2.remove(ENQUEUE_TIMEOUT) == null) {
/openjdk10/jdk/test/java/util/AbstractList/
H A DCheckForComodification.java44 list.remove(i);
/openjdk10/jdk/test/java/util/Collection/testlibrary/
H A DExtendsAbstractCollection.java61 public boolean remove(Object element) { method in class:ExtendsAbstractCollection
62 return coll.remove(element);
77 public void remove() {
78 source.remove();
/openjdk10/jdk/test/java/util/prefs/
H A DCheckUserPrefLater.java39 prefs.remove("Check");
/openjdk10/jdk/test/java/util/HashMap/
H A DKeySetRemove.java27 * @summary HashMap and TreeMap entrySet().remove(k) spuriously returned
38 if (!m[i].keySet().remove("bananas"))
/openjdk10/jdk/src/java.desktop/windows/native/libawt/windows/
H A DGDIHashtable.h57 void remove(GDIHashtable*);
126 INLINE void remove(GDIHashtable* table) { m_list.remove(table); } function in class:GDIHashtable::BatchDestructionManager
169 manager.remove(this);
/openjdk10/jdk/test/javax/swing/JLayer/6875716/
H A Dbug6875716.java26 * @summary JLayer.remove((Component)null) should behave consistently in (not) throwing NPE
39 layer.remove((Component)null);
/openjdk10/jdk/test/sun/text/IntHashtable/
H A DBug4705389.java39 table.remove(i);
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/internal/jshell/tool/
H A DPersistentStorage.java89 void remove(String key); method in interface:PersistentStorage
/openjdk10/langtools/test/tools/javac/foreach/
H A DSpecIterable.java47 public void remove() {}
/openjdk10/jdk/test/java/util/PriorityQueue/
H A DPriorityQueueSort.java77 recons.add(pq.remove());
84 recons.add(pq.remove());
92 i.remove();
95 recons.add(pq.remove());
99 i.remove();
102 throw new RuntimeException("Iterator remove test failed.");

Completed in 306 milliseconds

1234567891011>>