Searched defs:remove (Results 1 - 25 of 366) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/opto/
H A Dblock.cpp58 void Block_List::remove(uint i) { function in class:Block_List
151 // Find and remove n from block list
153 _nodes.remove(find_node(n));
472 nstack.pop(); // remove node from stack
625 _blocks.remove(bx_index);
644 _blocks.remove(i);
763 // We fall into next block; remove the Goto
1217 // Union the lower with the higher and remove the pointer
/openjdk7/jdk/src/share/classes/java/util/
H A DIterator.java34 * <li> Iterators allow the caller to remove elements from the
78 * @throws UnsupportedOperationException if the {@code remove}
82 * yet been called, or the {@code remove} method has already
86 void remove(); method in interface:Iterator
H A DAbstractQueue.java42 * elements. Methods {@link #add add}, {@link #remove remove}, and
112 public E remove() { method in class:AbstractQueue
121 * Retrieves, but does not remove, the head of this queue. This method
H A DQueue.java64 * <td>{@link #remove remove()}</td>
80 * element which would be removed by a call to {@link #remove() } or
94 * <p>The {@link #remove()} and {@link #poll()} methods remove and
98 * implementation to implementation. The <tt>remove()</tt> and
100 * queue is empty: the <tt>remove()</tt> method throws an exception,
104 * not remove, the head of the queue.
191 E remove(); method in interface:Queue
202 * Retrieves, but does not remove, th
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/event/
H A DEventQueue.java46 * {@link #remove() remove()} every EventSet from the
72 EventSet remove() throws InterruptedException; method in interface:EventQueue
87 EventSet remove(long timeout) throws InterruptedException; method in interface:EventQueue
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/monitoring/
H A DMonitoringManagerFactory.java44 void remove(String nameOfTheRoot); method in interface:MonitoringManagerFactory
/openjdk7/corba/src/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
H A DNVList.java176 public abstract void remove(int index) throws org.omg.CORBA.Bounds; method in class:NVList
/openjdk7/hotspot/agent/src/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
H A DLivenessPathList.java48 void remove(LivenessPath path) { method in class:LivenessPathList
49 list.remove(path);
/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/awt/peer/
H A DChoicePeer.java54 * @param index the index where to remove the item
56 * @see Choice#remove(int)
58 void remove(int index); method in interface:ChoicePeer
/openjdk7/jdk/src/share/classes/java/lang/
H A DApplicationShutdownHooks.java80 static synchronized boolean remove(Thread hook) { method in class:ApplicationShutdownHooks
87 return hooks.remove(hook) != null;
/openjdk7/jdk/src/share/classes/java/awt/
H A DMenuContainer.java35 void remove(MenuComponent comp); method in interface:MenuContainer
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/
H A DRemoveCookie.java35 void remove(); method in interface:RemoveCookie
/openjdk7/jdk/test/sun/security/tools/keytool/
H A DCloseFile.java39 remove("f0", false);
40 remove("f1", false);
43 remove("f2", true);
45 remove("f2", true);
49 remove("f2", true);
52 remove("f2", true);
53 remove("f0", true);
56 remove("f0", true);
57 remove("f1", true);
63 static void remove(Strin method in class:CloseFile
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DClassSet.java86 public void remove(JavaClass clazz) { _map.remove(clazz.getClassName()); } method in class:ClassSet
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLAttributesIteratorImpl.java75 public void remove() { method in class:XMLAttributesIteratorImpl
78 //remove the attribute at current index and lower the current position by 1.
82 //either the next method has been called yet, or the remove method has already been called
86 }//remove
/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/com/sun/corba/se/impl/corba/
H A DExceptionListImpl.java73 public void remove(int index) method in class:ExceptionListImpl
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/monitoring/
H A DMonitoringManagerFactoryImpl.java48 public synchronized void remove(String nameOfTheRoot) { method in class:MonitoringManagerFactoryImpl
49 monitoringManagerTable.remove(nameOfTheRoot);
/openjdk7/corba/src/share/classes/com/sun/corba/se/pept/transport/
H A DInboundConnectionCache.java38 public void remove(Connection connection); method in interface:InboundConnectionCache
H A DOutboundConnectionCache.java38 public void remove(ContactInfo contactInfo); method in interface:OutboundConnectionCache
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DEditableAtEndDocument.java45 public void remove(int offs, int len) throws BadLocationException { method in class:EditableAtEndDocument
60 super.remove(cutStart, cutEnd - cutStart);
74 super.remove(0, getLength());

Completed in 89 milliseconds

1234567891011>>