Home | History | Annotate | Download | only in collect

Lines Matching defs:predicate

32 import com.google.common.base.Predicate;
1312 private static final Predicate<String> NOT_LENGTH_3
1313 = new Predicate<String>() {
1320 private static final Predicate<Integer> EVEN
1321 = new Predicate<Integer>() {
1328 private static final Predicate<Entry<String, Integer>> CORRECT_LENGTH
1329 = new Predicate<Entry<String, Integer>>() {
1499 Predicate<Object> predicate = Predicates.alwaysFalse();
1501 = Maps.filterEntries(unfiltered, predicate);
1510 Predicate<Entry<?, ?>> predicate = new Predicate<Entry<?, ?>>() {
1518 = Maps.filterEntries(unfiltered, predicate);