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

1234567891011>>

/openjdk7/jdk/test/sun/security/krb5/tools/
H A DKtabCheck.java53 expected.remove(vne);
/openjdk7/corba/src/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) ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/monitoring/
H A DMonitoredObjectImpl.java79 children.remove( name );
115 monitoredAttributes.remove( name );
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DMapScriptObject.java91 map.remove(name);
101 map.remove(key);
/openjdk7/jdk/src/share/classes/javax/script/
H A DSimpleBindings.java197 public Object remove(Object key) { method in class:SimpleBindings
199 return map.remove(key);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJSplitPane.java459 remove(leftComponent);
514 remove(rightComponent);
883 * @param component the <code>Component</code> to remove
885 public void remove(Component component) { method in class:JSplitPane
891 super.remove(component);
904 * @param index an integer specifying the component to remove, where
908 public void remove(int index) { method in class:JSplitPane
916 super.remove(index);
1008 /* Find the Component that already exists and remove it. */
1013 remove(toRemov
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DLazyActionMap.java110 public void remove(Object key) { method in class:LazyActionMap
112 super.remove(key);
/openjdk7/jdk/src/share/classes/java/util/
H A DAbstractList.java43 * {@link #add(int, Object) add(int, E)} and {@link #remove(int)} methods.
56 * {@link #remove(int)}.
160 public E remove(int index) { method in class:AbstractList
226 * {@code UnsupportedOperationException} unless {@code remove(int
274 * {@code get(int)}, and {@code remove(int)} methods.
278 * {@code remove} method unless the list's {@code remove(int)} method is
310 * and {@code remove(int)} methods.
314 * {@code remove}, {@code set} and {@code add} methods unless the
315 * list's {@code remove(in
368 public void remove() { method in class:AbstractList.Itr
657 public E remove(int index) { method in class:SubList
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DCopyOnWriteArraySet.java48 * <li>Mutative operations (<tt>add</tt>, <tt>set</tt>, <tt>remove</tt>, etc.)
51 * <li>Iterators do not support the mutative <tt>remove</tt> operation.
231 public boolean remove(Object o) { method in class:CopyOnWriteArraySet
232 return al.remove(o);
296 * @see #remove(Object)
317 * @see #remove(Object)
330 * <tt>remove</tt> method.
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DFileTreeCreator.java56 ignores.remove(cfg);
68 disablePch.remove(cfg);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DMessageUpdatableContext.java135 public Object remove(Object obj) { method in class:MessageUpdatableContext
136 return ctxt.remove(obj);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DDeferedCollection.java103 public void remove() {
139 public boolean remove(Object o) { method in class:DeferedCollection
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DPendingIoCache.java89 <V,A> PendingFuture<V,A> remove(long overlapped) { method in class:PendingIoCache
91 PendingFuture<V,A> res = pendingIoMap.remove(overlapped);
/openjdk7/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();
/openjdk7/jdk/test/java/util/concurrent/DelayQueue/
H A DIterate.java48 it.remove();
56 it.remove();
/openjdk7/jdk/test/sun/net/InetAddress/nameservice/simple/
H A DSimpleNameService.java53 public static void remove(String host) { method in class:SimpleNameService
54 hosts.remove(host);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXPropertyCache.java108 windowToMap.remove(window);
114 entryMap.remove(property);
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DAttributeSetUtilities.java98 public synchronized boolean remove(Class<?> category) { method in class:AttributeSetUtilities.UnmodifiableAttributeSet
102 public boolean remove(Attribute attribute) { method in class:AttributeSetUtilities.UnmodifiableAttributeSet
309 public synchronized boolean remove(Class<?> category) { method in class:AttributeSetUtilities.SynchronizedAttributeSet
310 return attrset.remove(category);
313 public synchronized boolean remove(Attribute attribute) { method in class:AttributeSetUtilities.SynchronizedAttributeSet
314 return attrset.remove(attribute);
/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DTimezone.java390 for (int i = 0; i < (transitions.size() - 2); i++) { // don't remove the last one
392 transitions.remove(i);
393 offsets.remove(i);
394 dstOffsets.remove(i);
399 for (int i = 0; i < (transitions.size() - 2); i++) { // don't remove the last one
402 transitions.remove(i+1);
403 offsets.remove(i+1);
404 dstOffsets.remove(i+1);
/openjdk7/jdk/test/javax/management/modelmbean/ModelMBeanInfoSupport/
H A DGetAllDescriptorsTest.java238 private static Descriptor remove(ArrayList<Descriptor> list, method in class:GetAllDescriptorsTest
240 if (list.remove(item)) return item;
256 if (!mbd.equals(remove(list,mbd))) {
267 if (!ad.equals(remove(list,ad))) {
280 if (!od.equals(remove(list,od))) {
293 if (!nd.equals(remove(list,nd))) {
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DFileChannelImpl.java153 threads.remove(ti);
183 threads.remove(ti);
209 threads.remove(ti);
239 threads.remove(ti);
265 threads.remove(ti);
289 threads.remove(ti);
311 threads.remove(ti);
359 threads.remove(ti);
379 threads.remove(ti);
449 threads.remove(t
1128 public void remove(FileLock fl) { method in class:FileChannelImpl.SimpleFileLockTable
[all...]
H A DFileLockTable.java61 public abstract void remove(FileLock fl); method in class:FileLockTable
169 lockMap.remove(fk);
174 public void remove(FileLock fl) { method in class:SharedFileLockTable
189 list.remove(index);
208 // remove locks obtained by this channel
210 // remove the lock from the list
212 list.remove(index);
221 // once the lock list is empty we remove it from the map
267 list.remove(ref);
H A DSimpleAsynchronousFileChannelImpl.java121 threads.remove(ti);
151 threads.remove(ti);
169 threads.remove(ti);
221 threads.remove(ti);
279 threads.remove(ti);
331 threads.remove(ti);
385 threads.remove(ti);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DAttributeMap.java219 * The name of a node to remove. If the
250 * @param item The node to remove
273 return remove((AttrImpl)item, index, addDefault);
295 return remove((AttrImpl)nodes.get(i), i, true);
299 private final Node remove(AttrImpl attr, int index, method in class:AttributeMap
335 nodes.remove(index);
338 nodes.remove(index);
343 // remove reference to owner
362 * The namespace URI of the node to remove.
365 * @param name The local name of the node to remove
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DFigure.java155 predecessors.remove(f);
160 successors.remove(f);
198 c.remove();
202 inputSlots.remove(s);
204 outputSlots.remove(s);
231 inputSlots.remove(s);
236 outputSlots.remove(s);

Completed in 103 milliseconds

1234567891011>>