Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
DTileServices.java210 CustomTileInterface customTile = getTileForUserAndComponent(userId, component); in requestListening() local
211 if (customTile == null) { in requestListening()
215 TileServiceManager service = mServices.get(customTile); in requestListening()
220 + customTile.getTileSpec()); in requestListening()
240 CustomTileInterface customTile = getTileForToken(token); in updateQsTile() local
241 if (customTile != null) { in updateQsTile()
242 int uid = verifyCaller(customTile); in updateQsTile()
244 final TileServiceManager tileServiceManager = mServices.get(customTile); in updateQsTile()
246 Log.e(TAG, "TileServiceManager not started for " + customTile.getComponent(), in updateQsTile()
253 customTile.updateTileState(tile, uid); in updateQsTile()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/external/
DCustomTileTest.kt103 private lateinit var customTile: CustomTile variable in com.android.systemui.qs.external.CustomTileTest
153 customTile = CustomTile.create(customTileFactory, TILE_SPEC, mContext) in setUp()
154 customTile.initialize() in setUp()
160 assertEquals(0, customTile.user) in testCorrectUser()
176 customTile = CustomTile.create(customTileFactory, TILE_SPEC, mContext) in testToggleableTileHasBooleanState()
177 customTile.initialize() in testToggleableTileHasBooleanState()
180 assertTrue(customTile.state is QSTile.BooleanState) in testToggleableTileHasBooleanState()
181 assertTrue(customTile.newTileState() is QSTile.BooleanState) in testToggleableTileHasBooleanState()
186 assertFalse(customTile.state is QSTile.BooleanState) in testRegularTileHasNotBooleanState()
187 assertFalse(customTile.newTileState() is QSTile.BooleanState) in testRegularTileHasNotBooleanState()
[all …]
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/qs/pipeline/shared/
DTileSpecTest.kt44 fun customTile() { in customTile() method
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tileimpl/
DQSFactoryImplTest.kt102 @Mock private lateinit var customTile: CustomTile in <lambda>() variable in com.android.systemui.qs.tileimpl.QSFactoryImplTest
141 whenever(customTileFactory.create(anyString(), any())).thenReturn(customTile) in <lambda>()