Searched refs:removeAll (Results 1 - 25 of 190) sorted by relevance

12345678

/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DChoicePeer.java63 * @see Choice#removeAll()
65 void removeAll(); method in interface:ChoicePeer
H A DListPeer.java74 * @see List#removeAll()
76 void removeAll(); method in interface:ListPeer
/openjdk7/jdk/test/javax/swing/JLayer/6994419/
H A Dbug6994419.java26 * @summary JLayer.removeAll() behavior doesn't correspond to JLayer.remove() behavior.
42 l.removeAll();
51 l.removeAll();
/openjdk7/jdk/src/share/classes/java/net/
H A DCookieStore.java126 public boolean removeAll(); method in interface:CookieStore
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/sun/tools/pack/verify/
H A DVerifyTreeSet.java43 delta.removeAll(in);
/openjdk7/jdk/test/java/util/Collections/
H A DCheckedSetBash.java49 Set diff1 = clone(s1); diff1.removeAll(s2);
50 Set diff2 = clone(s2); diff2.removeAll(s1);
53 if (diff1.removeAll(diff2))
55 if (diff1.removeAll(intersection))
57 if (diff2.removeAll(diff1))
59 if (diff2.removeAll(intersection))
61 if (intersection.removeAll(diff1))
63 if (intersection.removeAll(diff1))
H A DCheckedListBash.java48 List diff1 = clone(s1); diff1.removeAll(s2);
49 List diff2 = clone(s2); diff2.removeAll(s1);
52 if (diff1.removeAll(diff2))
54 if (diff1.removeAll(intersection))
56 if (diff2.removeAll(diff1))
58 if (diff2.removeAll(intersection))
60 if (intersection.removeAll(diff1))
62 if (intersection.removeAll(diff1))
/openjdk7/jdk/test/java/util/LinkedHashSet/
H A DBasic.java49 Set diff1 = clone(s1); diff1.removeAll(s2);
50 Set diff2 = clone(s2); diff2.removeAll(s1);
53 if (diff1.removeAll(diff2))
55 if (diff1.removeAll(intersection))
57 if (diff2.removeAll(diff1))
59 if (diff2.removeAll(intersection))
61 if (intersection.removeAll(diff1))
63 if (intersection.removeAll(diff1))
/openjdk7/jdk/src/share/classes/java/util/
H A DCollection.java353 * @throws UnsupportedOperationException if the <tt>removeAll</tt> method
367 boolean removeAll(Collection<?> c); method in interface:Collection
H A DSet.java331 * @throws UnsupportedOperationException if the <tt>removeAll</tt> operation
343 boolean removeAll(Collection<?> c); method in interface:Set
H A DAbstractSet.java156 * @throws UnsupportedOperationException if the <tt>removeAll</tt> operation
168 public boolean removeAll(Collection<?> c) { method in class:AbstractSet
H A DList.java341 * @throws UnsupportedOperationException if the <tt>removeAll</tt> operation
353 boolean removeAll(Collection<?> c); method in interface:List
H A DRegularEnumSet.java241 public boolean removeAll(Collection<?> c) { method in class:RegularEnumSet
243 return super.removeAll(c);
/openjdk7/jdk/test/java/io/File/
H A DMacPathTest.java67 private static void removeAll(File file) throws Throwable { method in class:MacPathTest
70 removeAll(f);
121 removeAll(base);
164 removeAll(base);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXSheet.java220 mainPanel.removeAll();
223 southPanel.removeAll();
269 mainPanel.removeAll();
299 southPanel.removeAll();
326 mainPanel.removeAll();
337 southPanel.removeAll();
344 mainPanel.removeAll();
348 southPanel.removeAll();
383 mainPanel.removeAll();
390 southPanel.removeAll();
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DCopyOnWriteArraySet.java298 public boolean removeAll(Collection<?> c) { method in class:CopyOnWriteArraySet
299 return al.removeAll(c);
/openjdk7/jdk/src/share/classes/sun/awt/im/
H A DInputMethodPopupMenu.java68 abstract void removeAll(); method in class:InputMethodPopupMenu
182 void removeAll() { method in class:JInputMethodPopupMenu
183 delegate.removeAll();
239 void removeAll() { method in class:AWTInputMethodPopupMenu
240 delegate.removeAll();
/openjdk7/jdk/test/com/sun/jdi/
H A DAllLineLocations.java144 list.removeAll(list2);
179 list.removeAll(list2);
214 list.removeAll(list2);
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/tasks/
H A DThreadService.java108 public void removeAll() { method in class:ThreadService
136 removeAll();
/openjdk7/jdk/src/share/classes/sun/util/
H A DCoreResourceBundleControl-XLocales.java.template101 candidates.removeAll(excludedJDKLocales);
/openjdk7/jdk/test/javax/swing/JMenu/4692443/
H A Dbug4692443.java101 submenu.removeAll();
104 submenu.removeAll();
/openjdk7/langtools/test/tools/javac/tree/
H A DJavacTreeScannerTest.java105 missing.removeAll(found);
111 excess.removeAll(expect);
/openjdk7/jdk/test/java/nio/file/Files/
H A DDeleteOnClose.java73 TestUtil.removeAll(dir);
/openjdk7/jdk/test/javax/swing/plaf/nimbus/
H A DTest6919629.java69 f.getContentPane().removeAll();
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DKeySets.java122 s.removeAll(hs);
167 sel.selectedKeys().removeAll(hs);
169 throw new Exception("removeAll failed");

Completed in 38 milliseconds

12345678