OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:unscheduleDrawable
(Results
1 - 12
of
12
) sorted by null
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/
RotateDrawableTest.java
219
mRotateDrawable.
unscheduleDrawable
(null, null);
220
verify(callback, times(1)).
unscheduleDrawable
(any(), any());
223
mRotateDrawable.
unscheduleDrawable
(new ColorDrawable(Color.RED), () -> {});
224
verify(callback, times(1)).
unscheduleDrawable
(any(), any());
228
mRotateDrawable.
unscheduleDrawable
(null, null);
229
verify(callback, never()).
unscheduleDrawable
(any(), any());
DrawableContainerTest.java
661
mDrawableContainer.
unscheduleDrawable
(mDrawableContainer, null);
662
mDrawableContainer.
unscheduleDrawable
(null, () -> {});
667
mDrawableContainer.
unscheduleDrawable
(mDrawableContainer, null);
668
verify(callback, never()).
unscheduleDrawable
(any(), any());
672
mDrawableContainer.
unscheduleDrawable
(null, () -> {});
673
verify(callback, times(1)).
unscheduleDrawable
(any(), any());
680
mDrawableContainer.
unscheduleDrawable
(mDrawableContainer, null);
681
verify(callback, never()).
unscheduleDrawable
(any(), any());
683
mDrawableContainer.
unscheduleDrawable
(null, () -> {});
684
verify(callback, never()).
unscheduleDrawable
(any(), any())
[
all
...]
DrawableWrapperTest.java
145
wrapper.
unscheduleDrawable
(null, null);
146
verify(cb, times(1)).
unscheduleDrawable
(any(), any());
149
wrapper.
unscheduleDrawable
(new BitmapDrawable(), () -> {});
150
verify(cb, times(1)).
unscheduleDrawable
(any(), any());
154
wrapper.
unscheduleDrawable
(null, null);
155
verify(cb, never()).
unscheduleDrawable
(any(), any());
ScaleDrawableTest.java
137
scaleDrawable.
unscheduleDrawable
(null, null);
138
verify(callback, times(1)).
unscheduleDrawable
(any(), any());
141
scaleDrawable.
unscheduleDrawable
(new BitmapDrawable(), () -> {});
142
verify(callback, times(1)).
unscheduleDrawable
(any(), any());
146
scaleDrawable.
unscheduleDrawable
(null, null);
147
verify(callback, never()).
unscheduleDrawable
(any(), any());
ColorStateListDrawableTest.java
236
public void
unscheduleDrawable
(Drawable who, Runnable what) {
AdaptiveIconDrawableTest.java
118
iconDrawable.
unscheduleDrawable
(
122
iconDrawable.
unscheduleDrawable
(null, null);
ClipDrawableTest.java
375
clipDrawable.
unscheduleDrawable
(colorDrawable, null);
376
verify(callback, times(1)).
unscheduleDrawable
(clipDrawable, null);
InsetDrawableTest.java
122
mInsetDrawable.
unscheduleDrawable
(mPassDrawable, () -> {});
125
mInsetDrawable.
unscheduleDrawable
(null, null);
LayerDrawableTest.java
391
layerDrawable.
unscheduleDrawable
(null, null);
392
verify(cb, times(1)).
unscheduleDrawable
(any(), any());
395
layerDrawable.
unscheduleDrawable
(mBitmapDrawable, () -> {});
396
verify(cb, times(1)).
unscheduleDrawable
(any(), any());
400
layerDrawable.
unscheduleDrawable
(null, null);
401
verify(cb, never()).
unscheduleDrawable
(any(), any());
[
all
...]
DrawableTest.java
787
verify(mockCallback, times(1)).
unscheduleDrawable
(mockDrawable, null);
[
all
...]
/cts/tests/tests/view/src/android/view/cts/
ViewTest.java
[
all
...]
/development/samples/training/NavigationDrawer/libs/
android-support-v4.jar
Completed in 147 milliseconds