Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/domain/interactor/
DCurrentTilesInteractor.kt240 val newTileMap = mutableMapOf<TileSpec, TileOrNotInstalled>() in startTileCollection() constant
243 if (tileSpec !in newTileMap) { in startTileCollection()
248 newTileMap[tileSpec] = TileOrNotInstalled.NotInstalled in startTileCollection()
265 newTileMap[tileSpec] = TileOrNotInstalled.Tile(newTile) in startTileCollection()
271 val resolvedSpecs = newTileMap.keys.toList() in startTileCollection()
273 specsToTiles.putAll(newTileMap) in startTileCollection()
275 newTileMap in startTileCollection()
283 newTileMap.filter { it.value is TileOrNotInstalled.NotInstalled }.keys, in startTileCollection()