Home
last modified time | relevance | path

Searched refs:colorStateListOf (Results 1 – 4 of 4) sorted by relevance

/cts/tests/tests/widget/src/android/widget/cts/
DAbsSeekBarTest.java319 verify(mockThumb, times(1)).setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testThumbTint()
324 .setTintList(TestUtils.colorStateListOf(Color.RED)); in testThumbTint()
334 .setTintList(TestUtils.colorStateListOf(Color.RED)); in testThumbTint()
351 .setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testThumbTintBlendMode()
356 .setTintList(TestUtils.colorStateListOf(Color.RED)); in testThumbTintBlendMode()
366 .setTintList(TestUtils.colorStateListOf(Color.RED)); in testThumbTintBlendMode()
383 .setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testTickMarkTint()
388 .setTintList(TestUtils.colorStateListOf(Color.RED)); in testTickMarkTint()
398 .setTintList(TestUtils.colorStateListOf(Color.RED)); in testTickMarkTint()
415 .setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testTickMarkTintBlendMode()
[all …]
DProgressBarTest.java478 verify(mockProgressDrawable, times(1)).setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testProgressTint()
493 verify(mockProgressDrawable, times(1)).setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testProgressTint()
532 verify(mockProgressDrawable, times(1)).setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testProgressTintBlendMode()
547 verify(mockProgressDrawable, times(1)).setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testProgressTintBlendMode()
571 TestUtils.colorStateListOf(Color.RED)); in testIndeterminateTint()
582 TestUtils.colorStateListOf(Color.RED)); in testIndeterminateTint()
606 TestUtils.colorStateListOf(Color.RED)); in testIndeterminateTintBlendMode()
617 TestUtils.colorStateListOf(Color.RED)); in testIndeterminateTintBlendMode()
DCompoundButtonTest.java410 verify(mockDrawable, times(1)).setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testButtonTint()
416 verify(mockDrawable, times(1)).setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testButtonTint()
437 verify(mockDrawable, times(1)).setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testButtonTintBlendMode()
443 verify(mockDrawable, times(1)).setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testButtonTintBlendMode()
/cts/tests/tests/widget/src/android/widget/cts/util/
DTestUtils.java340 public static ColorStateList colorStateListOf(final @ColorInt int color) { in colorStateListOf() method in TestUtils