Lines Matching refs:Predicate
34 import com.android.internal.util.Predicate;
198 private static final Predicate<TestMethod> SELECT_SMALL = hasAnnotation(SmallTest.class);
200 private static final Predicate<TestMethod> SELECT_MEDIUM = hasAnnotation(MediumTest.class);
202 private static final Predicate<TestMethod> SELECT_LARGE = hasAnnotation(LargeTest.class);
322 Predicate<TestMethod> testSizePredicate = null; in onCreate()
323 Predicate<TestMethod> testAnnotationPredicate = null; in onCreate()
324 Predicate<TestMethod> testNotAnnotationPredicate = null; in onCreate()
420 List<Predicate<TestMethod>> getBuilderRequirements() { in getBuilderRequirements()
421 return new ArrayList<Predicate<TestMethod>>(); in getBuilderRequirements()
467 private Predicate<TestMethod> getSizePredicateFromArg(String sizeArg) { in getSizePredicateFromArg()
486 private Predicate<TestMethod> getAnnotationPredicate(String annotationClassName) { in getAnnotationPredicate()
500 private Predicate<TestMethod> getNotAnnotationPredicate(String annotationClassName) { in getNotAnnotationPredicate()