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.java317 verify(mockThumb, times(1)).setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testThumbTint()
321 verify(mockThumb, times(1)).setTintList(TestUtils.colorStateListOf(Color.RED)); in testThumbTint()
330 verify(mockThumb, times(1)).setTintList(TestUtils.colorStateListOf(Color.RED)); in testThumbTint()
346 verify(mockTickMark, times(1)).setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testTickMarkTint()
350 verify(mockTickMark, times(1)).setTintList(TestUtils.colorStateListOf(Color.RED)); in testTickMarkTint()
359 verify(mockTickMark, times(1)).setTintList(TestUtils.colorStateListOf(Color.RED)); in testTickMarkTint()
DProgressBarTest.java459 verify(mockProgressDrawable, times(1)).setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testProgressTint()
474 verify(mockProgressDrawable, times(1)).setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testProgressTint()
498 TestUtils.colorStateListOf(Color.RED)); in testIndeterminateTint()
509 TestUtils.colorStateListOf(Color.RED)); in testIndeterminateTint()
DCompoundButtonTest.java373 verify(mockDrawable, times(1)).setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testButtonTint()
379 verify(mockDrawable, times(1)).setTintList(TestUtils.colorStateListOf(Color.WHITE)); in testButtonTint()
/cts/tests/tests/widget/src/android/widget/cts/util/
DTestUtils.java340 public static ColorStateList colorStateListOf(final @ColorInt int color) { in colorStateListOf() method in TestUtils