Home
last modified time | relevance | path

Searched refs:removeIf (Results 1 – 9 of 9) sorted by relevance

/libcore/luni/src/test/java/libcore/java/util/
DRemoveIfTester.java42 integers.removeIf(isEven); in runBasicRemoveIfTests()
52 integers.removeIf(isOdd); in runBasicRemoveIfTests()
63 integers.removeIf(isEven); in runBasicRemoveIfTestsUnordered()
68 integers.removeIf(isOdd); in runBasicRemoveIfTestsUnordered()
76 supp.get().removeIf(x -> { in runRemoveIfOnEmpty()
84 supp.get().removeIf(null); in testRemoveIfNPE()
94 c.removeIf(x -> {c.add(42); return true;}); in testRemoveIfCME()
/libcore/luni/src/main/java/java/util/concurrent/
DCopyOnWriteArraySet.java386 public boolean removeIf(Predicate<? super E> filter) { in removeIf() method in CopyOnWriteArraySet
387 return al.removeIf(filter); in removeIf()
DConcurrentSkipListMap.java2434 public boolean removeIf(Predicate<? super V> filter) { in removeIf() method in ConcurrentSkipListMap.Values
2508 public boolean removeIf(Predicate<? super Entry<K,V>> filter) { in removeIf() method in ConcurrentSkipListMap.EntrySet
DConcurrentHashMap.java4723 public boolean removeIf(Predicate<? super V> filter) { in removeIf() method in ConcurrentHashMap.ValuesView
4796 public boolean removeIf(Predicate<? super Entry<K,V>> filter) { in removeIf() method in ConcurrentHashMap.EntrySetView
/libcore/ojluni/src/main/java/java/util/
DCollection.java396 default boolean removeIf(Predicate<? super E> filter) { in removeIf() method
DCollections.java1157 public boolean removeIf(Predicate<? super E> filter) { in removeIf() method in Collections
1910 public boolean removeIf(Predicate<? super E> filter) {
1911 synchronized (mutex) {return c.removeIf(filter);}
2698 public boolean removeIf(Predicate<? super E> filter) {
2699 return c.removeIf(filter);
3615 public boolean removeIf(Predicate<? super E> filter) {
3700 public boolean removeIf(Predicate<? super E> filter) {
3970 public boolean removeIf(Predicate<? super E> filter) {
4021 public boolean removeIf(Predicate<? super E> filter) {
4678 public boolean removeIf(Predicate<? super E> filter) {
[all …]
DVector.java1369 public synchronized boolean removeIf(Predicate<? super E> filter) { in removeIf() method
DArrayList.java1380 public boolean removeIf(Predicate<? super E> filter) { in removeIf() method
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DCollectionsTest.java1653 c.removeIf(x -> true); in test_unmodifiableCollectionLjava_util_Collection()
1715 c.removeIf(x -> true); in test_unmodifiableListLjava_util_List()
1855 c.removeIf(x -> true); in test_unmodifiableSetLjava_util_Set()
1929 c.removeIf(x -> true); in test_unmodifiableSortedSetLjava_util_SortedSet()