Searched refs:QSTileHost (Results 1 – 5 of 5) sorted by relevance
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/dagger/ |
H A D | QSHostModule.kt | 23 import com.android.systemui.qs.QSTileHost 49 qsHost: QSTileHost, 63 qsHost: QSTileHost,
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/ |
H A D | QSTileHostTest.java | 136 private QSTileHost mQSTileHost; 154 assertEquals(QSTileHost.TILES, invocation.getArgument(0)); in setUp() 222 List<String> tiles = QSTileHost.loadTileSpecs(mContext, ""); in testLoadTileSpecs_emptySetting() 228 List<String> tiles = QSTileHost.loadTileSpecs(mContext, null); in testLoadTileSpecs_nullSetting() 379 mQSTileHost.addTile("spec2", QSTileHost.POSITION_AT_END); in testAddTileAtEnd() 434 List<String> specs = QSTileHost.loadTileSpecs(mContext, "spec1,spec1,spec2"); in testLoadTileSpec_repeated() 445 List<String> specs = QSTileHost.loadTileSpecs(mContext, "default"); in testLoadTileSpec_repeatedInDefault() 456 List<String> specs = QSTileHost.loadTileSpecs(mContext, "default,spec1"); in testLoadTileSpec_repeatedDefaultAndSetting() 590 mUserFileManager.getSharedPreferences(QSTileHost.TILES, 0, user) in testIsTileAdded_differentUser() 699 return mUserFileManager.getSharedPreferences(QSTileHost.TILES, 0, user); in getSharedPreferencesForUser() [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
H A D | QSHostAdapter.kt | 51 private val qsTileHost: QSTileHost,
|
H A D | QSTileHost.java | 86 public class QSTileHost implements QSHost, Tunable, PluginListener<QSFactory>, ProtoDumpable, class 125 public QSTileHost(Context context, in QSTileHost() method in QSTileHost
|
/aosp14/frameworks/base/packages/SystemUI/docs/ |
H A D | qs-tiles.md | 231 ### QSTileHost subsection 247 …e implementation of this factory and that is the default factory (`QSFactoryImpl`) in `QSTileHost`. 272 2. This triggers a "setting changed" that is caught by `QSTileHost`. This class processes the new v… 273 3. `QSTileHost` calls all the available `QSFactory` classes that it has registered in order to find… 274 4. `QSTileHost` calls its callbacks indicating that the tiles have changed. In particular, `QSPanel… 286 1. The `CustomTile` obtains the `TileServices` class from the `QSTileHost` and request the creation…
|