Home
last modified time | relevance | path

Searched refs:customIconCache (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/
DCustomIconCacheTest.kt47 private lateinit var customIconCache: CustomIconCache variable in com.android.systemui.controls.CustomIconCacheTest
53 customIconCache = CustomIconCache() in setUp()
58 customIconCache.store(TEST_COMPONENT1, CONTROL_ID_1, icon1) in testIconStoredCorrectly()
60 assertTrue(icon1 === customIconCache.retrieve(TEST_COMPONENT1, CONTROL_ID_1)) in testIconStoredCorrectly()
65 customIconCache.store(TEST_COMPONENT1, CONTROL_ID_1, icon1) in testIconNotStoredReturnsNull()
67 assertNull(customIconCache.retrieve(TEST_COMPONENT1, CONTROL_ID_2)) in testIconNotStoredReturnsNull()
72 customIconCache.store(TEST_COMPONENT1, CONTROL_ID_1, icon1) in testWrongComponentReturnsNull()
74 assertNull(customIconCache.retrieve(TEST_COMPONENT2, CONTROL_ID_1)) in testWrongComponentReturnsNull()
79 customIconCache.store(TEST_COMPONENT1, CONTROL_ID_1, icon1) in testChangeComponentOldComponentIsRemoved()
80 customIconCache.store(TEST_COMPONENT2, CONTROL_ID_2, icon2) in testChangeComponentOldComponentIsRemoved()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/management/
DControlsEditingActivityTest.kt52 @Mock lateinit var customIconCache: CustomIconCache variable in com.android.systemui.controls.management.ControlsEditingActivityTest
68 customIconCache, in <lambda>()
165 customIconCache: CustomIconCache,
173 customIconCache,
DFavoritesModelTest.kt62 private lateinit var customIconCache: CustomIconCache in <lambda>() variable in com.android.systemui.controls.management.FavoritesModelTest
70 model = FavoritesModel(customIconCache, TEST_COMPONENT, INITIAL_FAVORITES, callback) in <lambda>()
95 ControlInfoWrapper(TEST_COMPONENT, it, true, customIconCache::retrieve) in <lambda>()
298 verify(customIconCache).retrieve(TEST_COMPONENT, wrapper.controlId) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/management/
DFavoritesModel.kt39 private val customIconCache: CustomIconCache, constant in com.android.systemui.controls.management.FavoritesModel
88 ControlInfoWrapper(componentName, it, true, customIconCache::retrieve) in <lambda>()
DControlsEditingActivity.kt54 private val customIconCache: CustomIconCache, constant in com.android.systemui.controls.management.ControlsEditingActivity
244 model = FavoritesModel(customIconCache, component, controls, favoritesModelCallback) in setUpList()