/libcore/luni/src/test/java/libcore/java/util/ |
RemoveIfTester.java | 28 * Tests behavior common to all implementations of {@link Collection#removeIf(Predicate)}. 42 integers.removeIf(isEven); 52 integers.removeIf(isOdd); 63 integers.removeIf(isEven); 68 integers.removeIf(isOdd); 76 supp.get().removeIf(x -> { 84 supp.get().removeIf(null); 94 c.removeIf(x -> {c.add(42); return true;});
|
/external/guava/guava/src/com/google/common/collect/ |
FilteredMultimapValues.java | 76 return Iterables.removeIf(multimap.unfiltered().entries(), 84 return Iterables.removeIf(multimap.unfiltered().entries(),
|
Collections2.java | 166 Iterables.removeIf(unfiltered, predicate); 201 return Iterables.removeIf(unfiltered, and(predicate, in(collection))); 206 return Iterables.removeIf(unfiltered, and(predicate, not(in(collection))));
|
Iterables.java | 174 public static <T> boolean removeIf( 180 return Iterators.removeIf(removeFrom.iterator(), predicate); [all...] |
Iterators.java | 216 return removeIf(removeFrom, in(elementsToRemove)); 230 public static <T> boolean removeIf( 254 return removeIf(removeFrom, not(in(elementsToRetain))); [all...] |
Maps.java | [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
CopyOnWriteArraySet.java | 386 public boolean removeIf(Predicate<? super E> filter) { 387 return al.removeIf(filter);
|
ConcurrentSkipListMap.java | [all...] |
ConcurrentHashMap.java | [all...] |
/libcore/ojluni/src/main/java/java/util/ |
Collection.java | 396 default boolean removeIf(Predicate<? super E> filter) {
|
Collections.java | [all...] |
Vector.java | [all...] |
ArrayList.java | [all...] |
/external/caliper/caliper/src/main/java/com/google/caliper/config/ |
CaliperConfigLoader.java | 85 Iterables.removeIf(map.values(), Predicates.equalTo(""));
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
Iterators.java | 214 return removeIf(removeFrom, in(elementsToRemove)); 228 public static <T> boolean removeIf( 252 return removeIf(removeFrom, not(in(elementsToRetain))); [all...] |
Iterables.java | 172 public static <T> boolean removeIf( 178 return Iterators.removeIf(removeFrom.iterator(), predicate); [all...] |
Maps.java | [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
IterablesTest.java | 942 assertTrue(Iterables.removeIf(list, 950 assertFalse(Iterables.removeIf(list, 969 assertTrue(Iterables.removeIf(transformed, 977 assertFalse(Iterables.removeIf(transformed, 989 assertTrue(Iterables.removeIf(list, [all...] |
IteratorsTest.java | [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
IterablesTest.java | [all...] |
IteratorsTest.java | [all...] |
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/ |
Main.java | 321 sRenderMessages.removeIf(message -> message.equals("Path.isConvex is not supported.")); 334 sRenderMessages.removeIf(message -> message.equals("Path.isConvex is not supported."));
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
CollectionsTest.java | [all...] |
/prebuilts/misc/common/guava/ |
guava-15.0.jar | |
/prebuilts/tools/common/m2/repository/com/google/guava/guava/15.0/ |
guava-15.0.jar | |