Home | History | Annotate | Download | only in cts

Lines Matching defs:unscheduleDrawable

649         mDrawableContainer.unscheduleDrawable(mDrawableContainer, null);
650 mDrawableContainer.unscheduleDrawable(null, () -> {});
655 mDrawableContainer.unscheduleDrawable(mDrawableContainer, null);
656 verify(callback, never()).unscheduleDrawable(any(), any());
660 mDrawableContainer.unscheduleDrawable(null, () -> {});
661 verify(callback, times(1)).unscheduleDrawable(any(), any());
668 mDrawableContainer.unscheduleDrawable(mDrawableContainer, null);
669 verify(callback, never()).unscheduleDrawable(any(), any());
671 mDrawableContainer.unscheduleDrawable(null, () -> {});
672 verify(callback, never()).unscheduleDrawable(any(), any());
675 mDrawableContainer.unscheduleDrawable(mockDrawable, null);
676 verify(callback, times(1)).unscheduleDrawable(any(), any());