Searched refs:remove (Results 26 - 50 of 1349) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/util/
H A DDictionary.java154 abstract public V remove(Object key); method in class:Dictionary
H A DListIterator.java43 * Note that the {@link #remove} and {@link #set(Object)} methods are
143 * @throws UnsupportedOperationException if the {@code remove}
146 * {@code previous} have been called, or {@code remove} or
150 void remove(); method in interface:ListIterator
155 * This call can be made only if neither {@link #remove} nor {@link
168 * {@code previous} have been called, or {@code remove} or
H A DAbstractSet.java144 * from this set with the iterator's <tt>remove</tt> method. If
148 * set's <tt>remove</tt> method.
152 * <tt>iterator</tt> method does not implement the <tt>remove</tt> method.
165 * @see #remove(Object)
173 modified |= remove(i.next());
177 i.remove();
H A DDeque.java47 * ends of the deque. Methods are provided to insert, remove, and
117 * <td>{@link java.util.Queue#remove remove()}</td>
164 * <p>This interface provides two methods to remove interior
306 * Retrieves, but does not remove, the first element of this deque.
317 * Retrieves, but does not remove, the last element of this deque.
327 * Retrieves, but does not remove, the first element of this deque,
335 * Retrieves, but does not remove, the last element of this deque,
442 E remove(); method in interface:Deque
457 * Retrieves, but does not remove, th
540 boolean remove(Object o); method in interface:Deque
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DMonitorListModel.java51 //### remove listeners on exit!
70 public void remove(String expr) { method in class:MonitorListModel
72 remove(index);
75 public void remove(int index) { method in class:MonitorListModel
76 monitors.remove(index);
/openjdk7/jdk/src/windows/native/sun/windows/
H A DGDIHashtable.h57 void remove(GDIHashtable*);
126 INLINE void remove(GDIHashtable* table) { m_list.remove(table); } function in class:GDIHashtable::BatchDestructionManager
169 manager.remove(this);
/openjdk7/jdk/test/java/util/AbstractList/
H A DCheckForComodification.java44 list.remove(i);
/openjdk7/jdk/test/java/util/HashMap/
H A DKeySetRemove.java27 * @summary HashMap and TreeMap entrySet().remove(k) spuriously returned
38 if (!m[i].keySet().remove("bananas"))
/openjdk7/jdk/test/java/util/prefs/
H A DCheckUserPrefLater.java41 prefs.remove("Check");
H A DRemoveNullKeyCheck.java27 * to remove() is null.
38 node.remove(null);
/openjdk7/jdk/test/javax/swing/JLayer/6875716/
H A Dbug6875716.java26 * @summary JLayer.remove((Component)null) should behave consistently in (not) throwing NPE
39 layer.remove((Component)null);
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DContextList.java76 public synchronized void remove (String protocol, String path) method in class:ContextList
81 throw new IllegalArgumentException ("cannot remove element from list");
83 list.remove (ctx);
86 public synchronized void remove (HttpContextImpl context) method in class:ContextList
91 list.remove (ctx);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DAuthCache.java66 * remove the entry from the cache whose pkey is specified and
70 public void remove (String pkey, AuthCacheValue entry); method in interface:AuthCache
/openjdk7/langtools/test/tools/javac/foreach/
H A DSpecIterable.java47 public void remove() {}
/openjdk7/jdk/test/java/util/PriorityQueue/
H A DPriorityQueueSort.java71 recons.add(pq.remove());
78 recons.add(pq.remove());
86 i.remove();
89 recons.add(pq.remove());
93 i.remove();
96 throw new RuntimeException("Iterator remove test failed.");
/openjdk7/jdk/test/sun/security/tools/keytool/
H A DKeyToolTest.java103 void remove(String filename) { method in class:KeyToolTest
311 remove("x.jks");
312 remove("x.jceks");
313 remove("x.p12");
314 remove("x2.jceks");
315 remove("x2.jks");
316 remove("x.jks.p1.cert");
319 remove("x.jks");
320 remove("x.jks.p1.cert");
351 remove("
[all...]
/openjdk7/jdk/src/share/classes/sun/security/validator/
H A DEndEntityChecker.java176 exts.remove(SimpleValidator.OID_BASIC_CONSTRAINTS);
182 exts.remove(OID_SUBJECT_ALT_NAME);
244 // remove extensions we checked
245 exts.remove(SimpleValidator.OID_KEY_USAGE);
246 exts.remove(SimpleValidator.OID_EXTENDED_KEY_USAGE);
247 exts.remove(SimpleValidator.OID_NETSCAPE_CERT_TYPE);
302 // remove extensions we checked
303 exts.remove(SimpleValidator.OID_KEY_USAGE);
304 exts.remove(SimpleValidator.OID_EXTENDED_KEY_USAGE);
305 exts.remove(SimpleValidato
[all...]
/openjdk7/jdk/test/java/util/Deque/
H A DChorusLine.java49 it.remove();
51 try {it.remove();}
59 it.remove();
61 try {it.remove();}
90 it.remove();
97 it.remove();
101 try {it.remove(); fail();}
106 it.remove();
108 try {it.remove(); fail();}
114 it.remove();
[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/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/spi/ior/
H A DIdentifiableContainerBase.java85 public void remove()
87 iter.remove() ;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DComponentInputMap.java101 public void remove(KeyStroke key) { method in class:ComponentInputMap
102 super.remove(key);
/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/javax/naming/directory/
H A DAttribute.java169 * @param attrval The possibly null value to remove from this attribute.
170 * If null, remove the attribute value that is null.
173 boolean remove(Object attrval); method in interface:Attribute
255 * @see #remove(int)
286 * @param ix The index of the value to remove.
292 Object remove(int ix); method in interface:Attribute
/openjdk7/jdk/src/share/classes/com/sun/beans/
H A DWeakCache.java61 this.map.remove(key);
81 this.map.remove(key);

Completed in 96 milliseconds

1234567891011>>