Home | History | Annotate | Download | only in cts

Lines Matching defs:scheduleDrawable

370         layerDrawable.scheduleDrawable(null, null, 0);
371 verify(cb, times(1)).scheduleDrawable(any(), any(), anyLong());
374 layerDrawable.scheduleDrawable(mBitmapDrawable, () -> {}, 1000L);
375 verify(cb, times(1)).scheduleDrawable(any(), any(), anyLong());
379 layerDrawable.scheduleDrawable(null, null, 0);
380 verify(cb, never()).scheduleDrawable(any(), any(), anyLong());