Home | History | Annotate | Download | only in collect

Lines Matching defs:predicate

29 import com.google.common.base.Predicate;
1004 private static final Predicate<String> NOT_LENGTH_3
1005 = new Predicate<String>() {
1012 private static final Predicate<Integer> EVEN
1013 = new Predicate<Integer>() {
1020 private static final Predicate<Entry<String, Integer>> CORRECT_LENGTH
1021 = new Predicate<Entry<String, Integer>>() {
1191 Predicate<Object> predicate = Predicates.alwaysFalse();
1193 = Maps.filterEntries(unfiltered, predicate);
1202 Predicate<Entry<?, ?>> predicate = new Predicate<Entry<?, ?>>() {
1210 = Maps.filterEntries(unfiltered, predicate);