Searched refs:remove (Results 251 - 275 of 1913) sorted by relevance

<<11121314151617181920>>

/openjdk10/jdk/test/tools/jlink/bindservices/src/m1/p1/
H A DMain.java46 Stream.of(args).forEach(modules::remove);
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/options/
H A DArgumentIterator.java70 /** Can't remove current element, since we may have buffered it. */
72 public void remove() { method in class:ArgumentIterator
/openjdk10/langtools/test/tools/javac/api/
H A DT6395981.java56 notExpected.remove(version);
/openjdk10/langtools/test/tools/javac/foreach/
H A DForeach.java41 public void remove() {
/openjdk10/langtools/test/tools/javadoc/api/basic/taglets/
H A DUnderlineTaglet.java128 tagletMap.remove(tag.getName());
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/message/saaj/
H A DSAAJMessageHeaders.java108 //if the value is zero or negative, remove that header name
110 notUnderstoodCount.remove(qName);
226 public Header remove(QName name) { method in class:SAAJMessageHeaders
227 return remove(name.getNamespaceURI(), name.getLocalPart());
231 public Header remove(String nsUri, String localName) { method in class:SAAJMessageHeaders
242 //it might have been a nonSAAJHeader - remove from that map
245 //remove it from understoodHeaders and notUnderstoodHeaders if present
248 understoodHeaders.remove(hdrName);
264 notUnderstoodCount.remove(hdrName);
302 //remove i
450 public void remove() { method in class:SAAJMessageHeaders.HeaderReadIterator
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/soql/
H A DMapScriptObject.java91 map.remove(name);
101 map.remove(key);
/openjdk10/hotspot/make/src/classes/build/tools/projectcreator/
H A DFileTreeCreator.java86 ignores.remove(cfg);
98 disablePch.remove(cfg);
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/ior/
H A DFreezableList.java127 public Object remove(int index) method in class:FreezableList
132 return delegate.remove(index) ;
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/monitoring/
H A DMonitoredObjectImpl.java79 children.remove( name );
115 monitoredAttributes.remove( name );
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/
H A DFieldGenOrMethodGen.java114 attribute_vec.remove(a);
122 annotation_vec.remove(ag);
/openjdk10/jdk/src/java.base/windows/classes/sun/nio/ch/
H A DPendingIoCache.java90 <V,A> PendingFuture<V,A> remove(long overlapped) { method in class:PendingIoCache
92 PendingFuture<V,A> res = pendingIoMap.remove(overlapped);
/openjdk10/jdk/src/java.desktop/share/classes/javax/imageio/spi/
H A DDigraphNode.java124 outNodes.remove(node);
125 node.inNodes.remove(this);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/
H A DJSplitPane.java449 remove(leftComponent);
502 remove(rightComponent);
862 * @param component the <code>Component</code> to remove
864 public void remove(Component component) { method in class:JSplitPane
870 super.remove(component);
883 * @param index an integer specifying the component to remove, where
887 public void remove(int index) { method in class:JSplitPane
895 super.remove(index);
985 /* Find the Component that already exists and remove it. */
990 remove(toRemov
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/plaf/basic/
H A DLazyActionMap.java110 public void remove(Object key) { method in class:LazyActionMap
112 super.remove(key);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/handler/
H A DMessageUpdatableContext.java128 public Object remove(Object obj) { method in class:MessageUpdatableContext
129 return ctxt.remove(obj);
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/xml/internal/xsom/util/
H A DDeferedCollection.java103 public void remove() {
139 public boolean remove(Object o) { method in class:DeferedCollection
/openjdk10/jdk/src/java.base/share/classes/java/time/chrono/
H A DIsoChronology.java590 Long pMonth = fieldValues.remove(PROLEPTIC_MONTH);
602 Long yoeLong = fieldValues.remove(YEAR_OF_ERA);
607 Long era = fieldValues.remove(ERA);
637 int y = YEAR.checkValidIntValue(fieldValues.remove(YEAR));
639 long months = Math.subtractExact(fieldValues.remove(MONTH_OF_YEAR), 1);
640 long days = Math.subtractExact(fieldValues.remove(DAY_OF_MONTH), 1);
643 int moy = MONTH_OF_YEAR.checkValidIntValue(fieldValues.remove(MONTH_OF_YEAR));
644 int dom = DAY_OF_MONTH.checkValidIntValue(fieldValues.remove(DAY_OF_MONTH));
/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/
H A DMultiMapResult.java91 public CompletableFuture<HttpResponse<V>> remove(Object key) { method in class:MultiMapResult
92 return map.remove(key);
/openjdk10/jdk/src/jdk.internal.le/share/classes/jdk/internal/jline/internal/
H A DShutdownHooks.java88 public static synchronized void remove(final Task task) { method in class:ShutdownHooks
97 tasks.remove(task);
99 // If there are no more tasks, then remove the hook thread
114 Log.debug("Failed to remove shutdown-hook", e);
/openjdk10/jdk/src/java.rmi/share/classes/sun/rmi/transport/
H A DDGCAckHandler.java122 idTable.remove(id);
146 DGCAckHandler h = idTable.remove(id);
/openjdk10/jdk/test/java/lang/InheritableThreadLocal/
H A DITLRemoveTest.java26 * @summary Basic functional test of remove method for InheritableThreadLocal
65 /* If the remove method is called then the ThreadLocal value will
102 // To remove the ThreadLocal value...
105 n.remove();
109 // To remove the ThreadLocal value and set new value ...
112 n.remove();
/openjdk10/jdk/test/java/util/concurrent/tck/
H A DThreadLocalTest.java66 * remove causes next access to return initial value
72 tl.remove();
77 * remove in InheritableThreadLocal causes next access to return
84 itl.remove();
/openjdk10/jdk/test/java/util/concurrent/DelayQueue/
H A DIterate.java50 it.remove();
58 it.remove();
/openjdk10/jdk/src/java.scripting/share/classes/javax/script/
H A DSimpleBindings.java198 public Object remove(Object key) { method in class:SimpleBindings
200 return map.remove(key);

Completed in 7207 milliseconds

<<11121314151617181920>>