Searched refs:remove (Results 1 - 25 of 1349) sorted by relevance

1234567891011>>

/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/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 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/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/src/share/classes/javax/swing/tree/
H A DMutableTreeNode.java51 void remove(int index); method in interface:MutableTreeNode
57 void remove(MutableTreeNode node); method in interface:MutableTreeNode
/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/corba/src/share/classes/com/sun/corba/se/spi/monitoring/
H A DMonitoringManagerFactory.java44 void remove(String nameOfTheRoot); method in interface:MonitoringManagerFactory
/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/test/java/util/AbstractList/
H A DFailFastIterator.java28 * *after* the set/add/remove operations were performed.
43 copy.remove(99);
45 i.remove();
46 throw new Exception("remove: iterator didn't fail fast");
50 throw new Exception("remove: iterator didn't fail fast enough");
55 copy.remove(99);
66 copy.remove(99);
/openjdk7/langtools/test/tools/javac/cast/6256789/
H A DT6256789.java36 return ((ExtraRef)refQ.remove());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DLivenessPathList.java48 void remove(LivenessPath path) { method in class:LivenessPathList
49 list.remove(path);
H A DConstIterator.java29 /** An Iterator which wraps another and prevents the "remove" method
47 public void remove() { method in class:ConstIterator
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DAttributeSet.java161 * <CODE>remove()</CODE> does nothing and returns <tt>false</tt>.
172 * the <CODE>remove()</CODE> operation.
174 public boolean remove(Class<?> category); method in interface:AttributeSet
179 * <CODE>remove()</CODE> does nothing and returns <tt>false</tt>.
189 * the <CODE>remove()</CODE> operation.
191 public boolean remove(Attribute attribute); method in interface:AttributeSet
/openjdk7/jdk/src/share/classes/sun/misc/
H A DJavaAWTAccess.java34 public void remove(Object context, Object key); method in interface:JavaAWTAccess
39 public void remove(Object key); method in interface:JavaAWTAccess
/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());
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDocumentFilter.java31 * <code>insert</code> or <code>remove</code>), it forwards the appropriate
40 * When <code>remove</code> or <code>insertString</code> is invoked
45 * from the <code>remove</code> or <code>insertString</code> method.
48 * <code>insertString</code>, <code>replace</code> and <code>remove</code>
72 * @param length the number of characters to remove >= 0
77 public void remove(FilterBypass fb, int offset, int length) throws method in class:DocumentFilter
79 fb.remove(offset, length);
136 * @return Document that remove/insertString will operate on
145 * @param length the number of characters to remove >= 0
150 public abstract void remove(in method in class:DocumentFilter.FilterBypass
[all...]
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/com/sun/demo/scripting/jconsole/
H A DEditableAtEndDocument.java62 public void remove(int offs, int len) throws BadLocationException { method in class:EditableAtEndDocument
77 super.remove(cutStart, cutEnd - cutStart);
91 super.remove(0, getLength());
/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
/openjdk7/jdk/src/share/classes/javax/script/
H A DBindings.java124 public Object remove(Object key); method in interface:Bindings
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DTextAreaDocument.java50 remove(0, getLength());
/openjdk7/jdk/src/share/classes/java/net/
H A DCookieStore.java112 * @param cookie the cookie to remove
118 public boolean remove(URI uri, HttpCookie cookie); method in interface:CookieStore

Completed in 141 milliseconds

1234567891011>>