Searched refs:remove (Results 51 - 75 of 1349) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/util/HashMap/
H A DNullKeyAtResize.java41 m.remove(null); // remove it.
46 new_order.remove(adding);
/openjdk7/jaxp/src/com/sun/xml/internal/stream/util/
H A DReadOnlyIterator.java63 public void remove() { method in class:ReadOnlyIterator
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DNVList.java176 public abstract void remove(int index) throws org.omg.CORBA.Bounds; method in class:NVList
/openjdk7/jdk/src/share/classes/sun/awt/
H A DSunDisplayChanger.java85 public void remove(DisplayChangedListener theListener) { method in class:SunDisplayChanger
94 listeners.remove(theListener);
108 // DisplayChangedListener to add or remove itself from a SunDisplayChanger.
111 // DisplayChangedListener remove itself from its list.
138 // do need to remove it from the original list, not the clone.
139 listeners.remove(current);
155 // DisplayChangedListener to add or remove itself from a SunDisplayChanger.
158 // DisplayChangedListener remove itself from its list.
184 // do need to remove it from the original list, not the clone.
185 listeners.remove(curren
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentMap.java41 * <tt>putIfAbsent</tt>, <tt>remove</tt>, and <tt>replace</tt> methods.
95 * map.remove(key);
103 * @throws UnsupportedOperationException if the <tt>remove</tt> operation
112 boolean remove(Object key, Object value); method in interface:ConcurrentMap
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DReferenceList.java65 * @param reference the reference to remove.
67 public void remove(Reference reference); method in interface:ReferenceList
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/stax/events/
H A DEmptyIterator.java48 public void remove() { method in class:EmptyIterator
/openjdk7/jdk/test/java/util/LinkedList/
H A DComodifiedRemove.java27 * @summary Due to a bug in LinkedList's ListIterator's remove(),
28 * the ListIterator would not check for comodification before remove.
48 e.remove();
54 "LinkedList ListIterator.remove() comodification check failed.");
H A DRemove.java27 * @summary Due to a bug in LinkedList's ListIterator's remove() logic, the List would
28 * get screwed up by a remove() following a previous().
43 e.remove();
46 throw new RuntimeException("LinkedList ListIterator remove failed.");
/openjdk7/langtools/test/tools/javac/generics/wildcards/pos/
H A DAmbiguousCast2.java43 Test<String, Integer> fromQueue = (Test<String, Integer>) queue.remove();
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletEventMulticaster.java69 public static AppletListener remove(AppletListener l, AppletListener oldl) { method in class:AppletEventMulticaster
95 protected AppletListener remove(AppletListener oldl) { method in class:AppletEventMulticaster
122 return ((AppletEventMulticaster)l).remove(oldl);
/openjdk7/jdk/src/share/classes/java/lang/ref/
H A DReferenceQueue.java125 public Reference<? extends T> remove(long timeout) method in class:ReferenceQueue
150 public Reference<? extends T> remove() throws InterruptedException { method in class:ReferenceQueue
151 return remove(0);
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/util/
H A DCacheMap.java77 /* We don't override remove(Object) or try to do something with
91 it.remove();
94 it.remove();
104 it.remove();
/openjdk7/jdk/test/java/util/EnumSet/
H A DSmallEnumIteratorRemoveResilience.java31 * @summary EnumSet's iterator.remove() can be resilient to set's modification.
54 iterator.remove();
60 set.remove(element);
64 // iterator.remove() after the underlying collection has been
67 // implement their remove() operation such that the set is
71 iterator.remove();
/openjdk7/jdk/test/java/util/PriorityQueue/
H A DRemoveContains.java27 * @summary Test contains/remove equator compatibility
89 check(q.remove("fi"));
93 check(! q.remove("fi"));
94 check(! q.remove("flurble"));
H A DForgetMeNot.java49 new Fun() { void f() { it.remove(); }});
53 private static void remove(Iterator<Integer> it, method in class:ForgetMeNot
56 it.remove();
89 remove(it, q);
115 remove(it, q);
120 remove(it, q);
128 remove(it, q);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DAssociationMap.java74 byPeer.remove(e.inner);
87 byPeer.remove(old.outer);
89 byElement.remove(old.element);
98 byPeer.remove(e.outer);
113 // remove this entry
114 byElement.remove(old.element);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DVM.java110 * here so it can be easily resurrected -- just remove the //
253 // Save a private copy of the system properties and remove
268 String s = (String)props.remove("sun.nio.MaxDirectMemorySize");
281 s = (String)props.remove("sun.nio.PageAlignDirectMemory");
305 props.remove("java.lang.Integer.IntegerCache.high");
308 props.remove("sun.zip.disableMemoryMapping");
311 props.remove("sun.java.launcher.diag");
/openjdk7/jdk/src/share/classes/java/net/
H A DInMemoryCookieStore.java84 // remove the ole cookie if there has had one
85 cookieJar.remove(cookie);
144 it.remove();
171 it.remove();
186 public boolean remove(URI uri, HttpCookie ck) { method in class:InMemoryCookieStore
195 modified = cookieJar.remove(ck);
302 // so also remove it from domain indexed store
309 lst.remove(c);
310 cookieJar.remove(c);
341 it.remove();
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DAbstractCollection.java40 * <tt>iterator</tt> method must additionally implement its <tt>remove</tt>
268 * from the collection using the iterator's remove method.
272 * collection's iterator method does not implement the <tt>remove</tt>
279 public boolean remove(Object o) { method in class:AbstractCollection
284 it.remove();
291 it.remove();
353 * this collection with the iterator's <tt>remove</tt> method.
357 * <tt>iterator</tt> method does not implement the <tt>remove</tt> method
365 * @see #remove(Object)
373 it.remove();
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DEndpointMessageContextImpl.java116 public Object remove(Object key) { method in class:EndpointMessageContextImpl
118 return packet.remove(key);
123 throw new IllegalArgumentException("Cannot remove property in HANDLER scope");
126 packet.invocationProperties.remove(key);
167 public void remove() {
168 it.remove();
169 EndpointMessageContextImpl.this.remove(cur.getKey());
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DTodo.java89 Env<AttrContext> env = contents.remove(0);
127 if (fq.fileContents.remove(env)) {
129 fileMap.remove(file);
130 contentsByFile.remove(fq);
161 Env<AttrContext> env = fileContents.remove(0);
162 contents.remove(env);
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DAbstractCharsetProvider.java87 private static <K,V> void remove(Map<K,V> m, K name) { method in class:AbstractCharsetProvider
88 V x = m.remove(name);
106 remove(classMap, name);
108 remove(aliasMap, aliases[i]);
109 remove(aliasNameMap, name);
187 public void remove() {
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DConnection.java96 public void remove() { method in class:Connection
98 inputSlot.connections.remove(this);
100 outputSlot.connections.remove(this);
/openjdk7/hotspot/test/compiler/6843752/
H A DTest.java38 public boolean remove; field in class:Test.Item
40 Item(boolean r) { remove = r; }
84 if (item.prev.remove) {

Completed in 235 milliseconds

1234567891011>>