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

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/java/util/
H A DAbstractMap.java37 * not support the <tt>add</tt> or <tt>remove</tt> methods, and its iterator
38 * should not support the <tt>remove</tt> method.
44 * <tt>remove</tt> method.
213 * <tt>remove</tt> operation, and the saved value is returned. If the
220 * iterator does not support the <tt>remove</tt> method and this map
227 public V remove(Object key) { method in class:AbstractMap
247 i.remove();
332 public void remove() {
333 i.remove();
388 public void remove() {
[all...]
H A DHashSet.java36 * (<tt>add</tt>, <tt>remove</tt>, <tt>contains</tt> and <tt>size</tt>),
58 * created, in any way except through the iterator's own <tt>remove</tt>
232 public boolean remove(Object o) { method in class:HashSet
233 return map.remove(o)==PRESENT;
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DMimeTable.java138 public synchronized MimeEntry remove(String type) { method in class:MimeTable
140 return remove(entry);
143 public synchronized MimeEntry remove(MimeEntry entry) { method in class:MimeTable
147 extensionMap.remove(extensionKeys[i]);
151 return entries.remove(entry.getType());
273 entries.remove("temp.file.template");
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionHandle.java177 * Delete contents, i.e., remove user access and make handle reusable.
200 targeters.remove(t);
260 attributes.remove(key);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DLivenessAnalysis.java125 list.remove(path);
163 // Go back through the path list and remove all
177 list.remove(curPath);
/openjdk7/jdk/src/share/classes/javax/script/
H A DSimpleScriptContext.java183 * @param name The name of the attribute to remove
184 * @param scope The scope in which to remove the attribute
197 return getBindings(ENGINE_SCOPE).remove(name);
203 return getBindings(GLOBAL_SCOPE).remove(name);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalDesktopIconUI.java93 desktopIcon.remove(label);
94 desktopIcon.remove(button);
/openjdk7/jdk/src/share/classes/javax/naming/
H A DCompositeName.java554 public Object remove(int posn) throws InvalidNameException{ method in class:CompositeName
555 return impl.remove(posn);
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DFixedList.java90 public boolean remove(Object o) throws UnsupportedOperationException { method in class:FixedList
140 public E remove(int index) throws UnsupportedOperationException { method in class:FixedList
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/tasks/
H A DThreadService.java100 removed = jobList.remove(lg);
173 job = jobList.remove(0);
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHeaders.java162 public List<String> remove(Object key) { method in class:Headers
163 return map.remove(normalize((String)key));
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DEventRequestSpecList.java160 spec.remove();
161 eventRequestSpecs.remove(inx);
/openjdk7/jdk/src/share/classes/java/awt/datatransfer/
H A DSystemFlavorMap.java576 getFlavorsForNativeCache.remove(nat);
577 getFlavorsForNativeCache.remove(null);
585 getNativesForFlavorCache.remove(flavor);
586 getNativesForFlavorCache.remove(null);
630 getNativesForFlavorCache.remove(flav);
631 getNativesForFlavorCache.remove(null);
639 getFlavorsForNativeCache.remove(encoded);
640 getFlavorsForNativeCache.remove(null);
1077 getNativesForFlavorCache.remove(flav);
1078 getNativesForFlavorCache.remove(nul
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DNode.java111 inEdges.remove(e);
116 outEdges.remove(e);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DWeakDataFile.java85 refList.remove(this);
96 refList.remove(this);
/openjdk7/jdk/src/windows/native/sun/windows/
H A DGDIHashtable.cpp44 void* value = remove(key);
98 void GDIHashtable::List::remove(GDIHashtable* table) { function in class:GDIHashtable::List
/openjdk7/jdk/test/java/lang/invoke/
H A DClassValueTest.java90 CV1.remove(CLASSES[i]);
136 // remove on middle pass
140 cvns[n].remove(c);
/openjdk7/jdk/test/java/lang/management/GarbageCollectorMXBean/
H A DGcInfoCompositeType.java102 if (getters.remove(key))
103 items.remove(key);
/openjdk7/jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/
H A DStateTest.java74 sel.selectedKeys().remove(sk);
102 sel.selectedKeys().remove(sk);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DOptions.java148 public void remove(String name) { method in class:Options
149 values.remove(name);
/openjdk7/jdk/test/java/util/TreeMap/
H A DNullAtEnd.java92 check(eq(m1.remove(m1.lastKey()), "d"));
101 check(eq(m3.remove(m3.lastKey()), "d"));
/openjdk7/jdk/test/java/util/concurrent/locks/ReentrantReadWriteLock/
H A DRWMap.java126 public Object remove(Object key) { method in class:RWMap
128 try { return m.remove(key); }
/openjdk7/jdk/test/java/util/zip/ZipFile/
H A DClearStaleZipFileInputStreams.java124 refSet.remove(rq.remove());
/openjdk7/jdk/test/javax/management/relation/
H A DRelationNotificationSeqNoTest.java97 Notification firstNotif = q.remove();
100 Notification n = q.remove();
/openjdk7/jdk/src/share/classes/sun/management/
H A DNotificationEmitterSupport.java88 the same index after a remove. */
93 newList.remove(i);
118 newList.remove(i);

Completed in 93 milliseconds

<<11121314151617181920>>