Searched refs:retainAll (Results 1 - 25 of 44) sorted by relevance

12

/openjdk7/jdk/test/java/util/EnumSet/
H A DRetainAll.java27 * @summary Test EnumSet.retainAll
62 check(! ras.retainAll(ras));
63 check(! ras.retainAll(rbs));
64 check(! jas.retainAll(jas));
65 check(! jas.retainAll(jbs));
66 check(! ras.retainAll(jas));
67 check(! jas.retainAll(ras));
/openjdk7/jdk/src/share/classes/java/util/
H A DCollection.java377 * @throws UnsupportedOperationException if the <tt>retainAll</tt> operation
391 boolean retainAll(Collection<?> c); method in interface:Collection
H A DSet.java309 * @throws UnsupportedOperationException if the <tt>retainAll</tt> operation
320 boolean retainAll(Collection<?> c); method in interface:Set
H A DList.java363 * @throws UnsupportedOperationException if the <tt>retainAll</tt> operation
375 boolean retainAll(Collection<?> c); method in interface:List
H A DRegularEnumSet.java262 public boolean retainAll(Collection<?> c) { method in class:RegularEnumSet
264 return super.retainAll(c);
H A DJumboEnumSet.java314 public boolean retainAll(Collection<?> c) { method in class:JumboEnumSet
316 return super.retainAll(c);
H A DAbstractCollection.java401 public boolean retainAll(Collection<?> c) { method in class:AbstractCollection
H A DVector.java928 public synchronized boolean retainAll(Collection<?> c) { method in class:Vector
929 return super.retainAll(c);
H A DCollections.java1090 public boolean retainAll(Collection<?> coll) { method in class:Collections.UnmodifiableCollection
1651 public boolean retainAll(Collection<?> coll) { method in class:Collections.SynchronizedCollection
1652 synchronized (mutex) {return c.retainAll(coll);}
2306 public boolean retainAll(Collection<?> coll) { method in class:Collections.CheckedCollection
2307 return c.retainAll(coll);
2826 public boolean retainAll(Collection<?> c) { method in class:Collections.CheckedMap.CheckedEntrySet
3912 public boolean retainAll(Collection<?> c) {return s.retainAll(c);} method in class:Collections.SetFromMap
3971 public boolean retainAll(Collection<?> c) {return q.retainAll( method in class:Collections.AsLIFOQueue
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DCopyOnWriteArraySet.java319 public boolean retainAll(Collection<?> c) { method in class:CopyOnWriteArraySet
320 return al.retainAll(c);
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DKeySets.java127 s.retainAll(Collections.EMPTY_SET);
164 sel.selectedKeys().retainAll(hs);
166 throw new Exception("retainAll failed");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DDeferedCollection.java151 public boolean retainAll(Collection<?> c) { method in class:DeferedCollection
/openjdk7/jdk/src/share/classes/sun/tools/jstatd/
H A DRemoteHostImpl.java108 activeVms.retainAll(ev.getActive());
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DFixedList.java115 public boolean retainAll(Collection<?> c) throws UnsupportedOperationException { method in class:FixedList
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/event/
H A DAbstractEventSet.java265 public boolean retainAll(Collection<?> coll) { method in class:AbstractEventSet
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DMessageContextImpl.java216 packet.createMapView().keySet().retainAll(fallbackMap.keySet());
217 packet.invocationProperties.keySet().retainAll(fallbackMap.keySet());
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DListBuffer.java250 public boolean retainAll(Collection<?> c) { method in class:ListBuffer
/openjdk7/jdk/test/java/util/Collections/
H A DCheckedSetBash.java48 intersection.retainAll(s2);
H A DCheckedListBash.java47 List intersection = clone(s1); intersection.retainAll(s2);
H A DCheckedNull.java158 m.entrySet().retainAll(cheater);}});
/openjdk7/jdk/test/java/util/LinkedHashSet/
H A DBasic.java48 intersection.retainAll(s2);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DUtil.java315 public boolean retainAll(Collection<?> coll) {
316 return s.retainAll(coll);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/
H A DTypeUtil.java102 s.retainAll(getAssignableTypes(cls));
/openjdk7/jdk/test/javax/management/MBeanInfo/
H A DTooManyFooTest.java149 declared.retainAll(exposed);
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/
H A DBatchEnvironment.java299 public boolean retainAll(Collection<?> c) { method in class:BatchEnvironment.Path.PathIterator

Completed in 111 milliseconds

12