Home | History | Annotate | Download | only in widget

Lines Matching defs:predicate

729      * A {@link android.animation.ValueAnimator} that starts once a given predicate returns true.
734 protected StartPredicate predicate;
736 public PendingStartAnimator(StartPredicate predicate) {
738 this.predicate = predicate;
743 if (!hasStarted && predicate.shouldStart(currentValue)) {
757 public PendingRetreatAnimator(int was, int now, int steps, StartPredicate predicate) {
758 super(predicate);
851 public PendingRevealAnimator(int dot, StartPredicate predicate) {
852 super(predicate);
878 * A predicate used to start an animation when a test passes
892 * A predicate used to start an animation when a given value is greater than a threshold
906 * A predicate used to start an animation then a given value is less than a threshold