Searched defs:entryPredicate (Results 1 - 15 of 15) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DFilteredMultimap.java33 Predicate<? super Entry<K, V>> entryPredicate(); method in interface:FilteredMultimap
H A DFilteredEntryMultimap.java61 public Predicate<? super Entry<K, V>> entryPredicate() { method in class:FilteredEntryMultimap
H A DFilteredKeyMultimap.java54 public Predicate<? super Entry<K, V>> entryPredicate() { method in class:FilteredKeyMultimap
186 return Collections2.filter(unfiltered.entries(), entryPredicate());
H A DMultimaps.java1967 * <p><b>Warning:</b> {@code entryPredicate} must be <i>consistent with
1973 Multimap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) {
1974 checkNotNull(entryPredicate);
1976 return filterEntries((SetMultimap<K, V>) unfiltered, entryPredicate);
1979 ? filterFiltered((FilteredMultimap<K, V>) unfiltered, entryPredicate)
1980 : new FilteredEntryMultimap<K, V>(checkNotNull(unfiltered), entryPredicate);
2006 * <p><b>Warning:</b> {@code entryPredicate} must be <i>consistent with
2012 SetMultimap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) {
2013 checkNotNull(entryPredicate);
2015 ? filterFiltered((FilteredSetMultimap<K, V>) unfiltered, entryPredicate)
1972 filterEntries( Multimap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2011 filterEntries( SetMultimap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2026 filterFiltered(FilteredMultimap<K, V> multimap, Predicate<? super Entry<K, V>> entryPredicate) argument
2039 filterFiltered( FilteredSetMultimap<K, V> multimap, Predicate<? super Entry<K, V>> entryPredicate) argument
[all...]
H A DMaps.java2126 Predicate<Entry<K, ?>> entryPredicate = keyPredicateOnEntries(keyPredicate);
2128 ? filterFiltered((AbstractFilteredMap<K, V>) unfiltered, entryPredicate)
2130 checkNotNull(unfiltered), keyPredicate, entryPredicate);
2228 * <p><b>Warning:</b> {@code entryPredicate} must be <i>consistent with equals </i>, as
2374 * <p><b>Warning:</b> {@code entryPredicate} must be <i>consistent with equals </i>, as
2410 * <p><b>Warning:</b> {@code entryPredicate} must be <i>consistent with
2414 Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) {
2416 return filterEntries((SortedMap<K, V>) unfiltered, entryPredicate);
2418 return filterEntries((BiMap<K, V>) unfiltered, entryPredicate);
2420 checkNotNull(entryPredicate);
2413 filterEntries( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2457 filterEntries( SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2463 filterSortedIgnoreNavigable( SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2504 filterEntries( NavigableMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2540 filterEntries( BiMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2553 filterFiltered(AbstractFilteredMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
2656 FilteredKeyMap(Map<K, V> unfiltered, Predicate<? super K> keyPredicate, Predicate<? super Entry<K, V>> entryPredicate) argument
2688 FilteredEntryMap( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2773 filterFiltered( FilteredEntrySortedMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
2784 FilteredEntrySortedMap(SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2875 filterFiltered( FilteredEntryNavigableMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
2892 private final Predicate<? super Entry<K, V>> entryPredicate; field in class:Maps.FilteredEntryNavigableMap
2895 FilteredEntryNavigableMap( NavigableMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
3022 filterFiltered( FilteredEntryBiMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DMultimaps.java1878 * <p><b>Warning:</b> {@code entryPredicate} must be <i>consistent with
1884 Multimap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) {
1885 checkNotNull(entryPredicate);
1887 return filterEntries((SetMultimap<K, V>) unfiltered, entryPredicate);
1890 ? filterFiltered((FilteredMultimap<K, V>) unfiltered, entryPredicate)
1891 : new FilteredEntryMultimap<K, V>(checkNotNull(unfiltered), entryPredicate);
1917 * <p><b>Warning:</b> {@code entryPredicate} must be <i>consistent with
1923 SetMultimap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) {
1924 checkNotNull(entryPredicate);
1926 ? filterFiltered((FilteredSetMultimap<K, V>) unfiltered, entryPredicate)
1883 filterEntries( Multimap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1922 filterEntries( SetMultimap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1937 filterFiltered(FilteredMultimap<K, V> multimap, Predicate<? super Entry<K, V>> entryPredicate) argument
1950 filterFiltered( FilteredSetMultimap<K, V> multimap, Predicate<? super Entry<K, V>> entryPredicate) argument
[all...]
H A DMaps.java1709 Predicate<Entry<K, ?>> entryPredicate = keyPredicateOnEntries(keyPredicate);
1711 ? filterFiltered((AbstractFilteredMap<K, V>) unfiltered, entryPredicate)
1713 checkNotNull(unfiltered), keyPredicate, entryPredicate);
1773 * <p><b>Warning:</b> {@code entryPredicate} must be <i>consistent with equals </i>, as
1882 * <p><b>Warning:</b> {@code entryPredicate} must be <i>consistent with equals </i>, as
1918 * <p><b>Warning:</b> {@code entryPredicate} must be <i>consistent with
1922 Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) {
1924 return filterEntries((SortedMap<K, V>) unfiltered, entryPredicate);
1926 return filterEntries((BiMap<K, V>) unfiltered, entryPredicate);
1928 checkNotNull(entryPredicate);
1921 filterEntries( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1965 filterEntries( SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
1971 filterSortedIgnoreNavigable( SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2007 filterEntries( BiMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2020 filterFiltered(AbstractFilteredMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
2123 FilteredKeyMap(Map<K, V> unfiltered, Predicate<? super K> keyPredicate, Predicate<? super Entry<K, V>> entryPredicate) argument
2155 FilteredEntryMap( Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2240 filterFiltered( FilteredEntrySortedMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
2251 FilteredEntrySortedMap(SortedMap<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) argument
2341 filterFiltered( FilteredEntryBiMap<K, V> map, Predicate<? super Entry<K, V>> entryPredicate) argument
[all...]
/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/dagger2/lib/
H A Dauto-value-1.0.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/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/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 535 milliseconds