Searched refs:filterEntries (Results 1 - 23 of 23) sorted by relevance

/external/guava/guava-tests/test/com/google/common/collect/
H A DMultimapsFilterEntriesAsMapTest.java27 * Tests for Multimaps.filterEntries().asMap().
50 return Multimaps.filterEntries(unfiltered, PREDICATE);
H A DFilteredMultimapTest.java47 return Multimaps.filterEntries(unfiltered, ENTRY_PREDICATE);
H A DMapsCollectionTest.java336 return Maps.filterEntries(map, FILTER_ENTRIES);
339 .named("Maps.filterEntries[Map, Predicate]")
353 map = Maps.filterEntries(map, FILTER_ENTRIES_1);
354 return Maps.filterEntries(map, FILTER_ENTRIES_2);
357 .named("Maps.filterEntries[Maps.filterEntries[Map, Predicate], Predicate]")
409 return Maps.filterEntries(map, FILTER_ENTRIES);
412 .named("Maps.filterEntries[BiMap, Predicate]")
461 return Maps.filterEntries(map, FILTER_ENTRIES);
464 .named("Maps.filterEntries[SortedMa
[all...]
H A DMapsTest.java1462 = Maps.filterEntries(unfiltered, CORRECT_LENGTH);
1481 = Maps.filterEntries(unfiltered, CORRECT_LENGTH);
1501 = Maps.filterEntries(unfiltered, predicate);
1518 = Maps.filterEntries(unfiltered, predicate);
1543 assertTrue(Maps.filterEntries((Map<String, Integer>) map, CORRECT_LENGTH)
1554 SortedMap<String, Integer> filtered = Maps.filterEntries(unfiltered, CORRECT_LENGTH);
1565 SortedMap<String, Integer> filtered = Maps.filterEntries(unfiltered, CORRECT_LENGTH);
1599 assertTrue(Maps.filterEntries((Map<String, Integer>) map, CORRECT_LENGTH)
H A DMultimapsCollectionTest.java640 return Multimaps.filterEntries(multimap,
644 .named("Multimaps.filterEntries[SetMultimap, Predicate]")
660 return Multimaps.filterEntries(multimap,
664 .named("Multimaps.filterEntries[Multimaps.filterKeys[SetMultimap]]")
678 multimap = Multimaps.filterEntries(multimap,
684 .named("Multimaps.filterKeys[Multimaps.filterEntries[SetMultimap]]")
/external/guava/guava/src/com/google/common/collect/
H A DPlatform.java96 ? Maps.filterEntries((NavigableMap<K, V>) map, predicate)
H A DMaps.java2167 return filterEntries(unfiltered, Maps.<K>keyPredicateOnEntries(keyPredicate));
2205 return filterEntries(unfiltered, Maps.<K>keyPredicateOnEntries(keyPredicate));
2236 return filterEntries(unfiltered, Maps.<K>keyPredicateOnEntries(keyPredicate));
2275 return filterEntries(unfiltered, Maps.<V>valuePredicateOnEntries(valuePredicate));
2311 return filterEntries(unfiltered, Maps.<V>valuePredicateOnEntries(valuePredicate));
2348 return filterEntries(unfiltered, Maps.<V>valuePredicateOnEntries(valuePredicate));
2381 return filterEntries(unfiltered, Maps.<V>valuePredicateOnEntries(valuePredicate));
2413 public static <K, V> Map<K, V> filterEntries( method in class:Maps
2416 return filterEntries((SortedMap<K, V>) unfiltered, entryPredicate);
2418 return filterEntries((BiMa
2457 public static <K, V> SortedMap<K, V> filterEntries( method in class:Maps
2504 public static <K, V> NavigableMap<K, V> filterEntries( method in class:Maps
2540 public static <K, V> BiMap<K, V> filterEntries( method in class:Maps
[all...]
H A DMultimaps.java1906 return filterEntries(unfiltered, Maps.<V>valuePredicateOnEntries(valuePredicate));
1941 return filterEntries(unfiltered, Maps.<V>valuePredicateOnEntries(valuePredicate));
1972 public static <K, V> Multimap<K, V> filterEntries( method in class:Multimaps
1976 return filterEntries((SetMultimap<K, V>) unfiltered, entryPredicate);
2011 public static <K, V> SetMultimap<K, V> filterEntries( method in class:Multimaps
/external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/
H A DRobolectricModel.java357 return Maps.filterEntries(shadowTypes, new Predicate<Entry<TypeElement, TypeElement>>() {
366 return Maps.filterEntries(shadowTypes, new Predicate<Entry<TypeElement, TypeElement>>() {
375 return Maps.filterEntries(getVisibleShadowTypes(), new Predicate<Entry<TypeElement,TypeElement>> () {
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DMapsTest.java1154 = Maps.filterEntries(unfiltered, CORRECT_LENGTH);
1173 = Maps.filterEntries(unfiltered, CORRECT_LENGTH);
1193 = Maps.filterEntries(unfiltered, predicate);
1210 = Maps.filterEntries(unfiltered, predicate);
1235 assertTrue(Maps.filterEntries((Map<String, Integer>) map, CORRECT_LENGTH)
1246 SortedMap<String, Integer> filtered = Maps.filterEntries(unfiltered, CORRECT_LENGTH);
1257 SortedMap<String, Integer> filtered = Maps.filterEntries(unfiltered, CORRECT_LENGTH);
1291 assertTrue(Maps.filterEntries((Map<String, Integer>) map, CORRECT_LENGTH)
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMaps.java1750 return filterEntries(unfiltered, Maps.<K>keyPredicateOnEntries(keyPredicate));
1781 return filterEntries(unfiltered, Maps.<K>keyPredicateOnEntries(keyPredicate));
1820 return filterEntries(unfiltered, Maps.<V>valuePredicateOnEntries(valuePredicate));
1856 return filterEntries(unfiltered, Maps.<V>valuePredicateOnEntries(valuePredicate));
1889 return filterEntries(unfiltered, Maps.<V>valuePredicateOnEntries(valuePredicate));
1921 public static <K, V> Map<K, V> filterEntries( method in class:Maps
1924 return filterEntries((SortedMap<K, V>) unfiltered, entryPredicate);
1926 return filterEntries((BiMap<K, V>) unfiltered, entryPredicate);
1965 public static <K, V> SortedMap<K, V> filterEntries( method in class:Maps
2007 public static <K, V> BiMap<K, V> filterEntries( method in class:Maps
[all...]
H A DMultimaps.java1817 return filterEntries(unfiltered, Maps.<V>valuePredicateOnEntries(valuePredicate));
1852 return filterEntries(unfiltered, Maps.<V>valuePredicateOnEntries(valuePredicate));
1883 public static <K, V> Multimap<K, V> filterEntries( method in class:Multimaps
1887 return filterEntries((SetMultimap<K, V>) unfiltered, entryPredicate);
1922 public static <K, V> SetMultimap<K, V> filterEntries( method in class:Multimaps
/external/dagger2/lib/
H A Dauto-value-1.4.1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/auto/ com/google/auto/value/ ...
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/annotation-tools/annotation-file-utilities/lib/
H A Dguava-20.0.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/annotation-tools/annotation-file-utilities/
H A Dannotation-file-utilities.jarMETA-INF/ META-INF/MANIFEST.MF annotations/ annotations/el/ annotations/field/ annotations/io/ annotations/io/classfile/ ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/conscrypt/benchmark-android/
H A Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties.java package vogar ...
/external/testng/ant/3rdparty/
H A Ddoclava-1.0.3.jarMETA-INF/MANIFEST.MF assets/html/index.html assets/templates/data.hdf assets/templates/assets/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 605 milliseconds