Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTileHost.java302 for (String tileSpec : tileSpecs) { in onTuningChanged()
383 mMainExecutor.execute(() -> changeTileSpecs(tileSpecs-> tileSpecs.remove(spec))); in removeTile()
394 mMainExecutor.execute(() -> changeTileSpecs(tileSpecs -> tileSpecs.removeAll(specs))); in removeTiles()
409 changeTileSpecs(tileSpecs -> { in addTile()
412 int size = tileSpecs.size(); in addTile()
414 tileSpecs.add(spec); in addTile()
434 final List<String> tileSpecs; in changeTileSpecs() local
436 tileSpecs = new ArrayList<>(mTileSpecs); in changeTileSpecs()
438 tileSpecs = loadTileSpecs(mContext, in changeTileSpecs()
441 if (changeFunction.test(tileSpecs)) { in changeTileSpecs()
[all …]
H A DQSTileRevealController.java67 ArraySet<String> tileSpecs = new ArraySet<>(); in updateRevealedTiles() local
69 tileSpecs.add(tile.getTileSpec()); in updateRevealedTiles()
77 addTileSpecsToRevealed(tileSpecs); in updateRevealedTiles()
80 tileSpecs.removeAll(revealedTiles); in updateRevealedTiles()
81 mTilesToReveal.addAll(tileSpecs); in updateRevealedTiles()