Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/shared/
DTileSpec.kt51 data class CustomTileSpec class in com.android.systemui.qs.pipeline.shared.TileSpec
70 spec.componentName?.let { CustomTileSpec(spec, it) } ?: Invalid in create()
74 fun create(component: ComponentName): CustomTileSpec { in create()
75 return CustomTileSpec(CustomTile.toSpec(component), component) in create()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/impl/custom/di/
DQSTileConfigModule.kt37 fun provideCustomTileSpec(): TileSpec.CustomTileSpec =
38 config.tileSpec as TileSpec.CustomTileSpec
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/viewmodel/
DQSTileConfigProvider.kt61 is TileSpec.CustomTileSpec -> true in getConfig()
71 is TileSpec.CustomTileSpec -> in getConfig()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/di/
DNewQSTileFactory.kt56 is TileSpec.CustomTileSpec -> createCustomTileViewModel(spec) in createTile()
66 private fun createCustomTileViewModel(spec: TileSpec.CustomTileSpec): QSTileViewModel =
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/qs/pipeline/shared/
DTileSpecTest.kt50 assertThat(tileSpec is TileSpec.CustomTileSpec).isTrue() in customTile()
52 assertThat((tileSpec as TileSpec.CustomTileSpec).componentName).isEqualTo(componentName) in customTile()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/panels/shared/model/
DEditTileData.kt32 (tileSpec is TileSpec.CustomTileSpec && appName != null)
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/qs/tiles/impl/custom/data/repository/
DFakeCustomTileRepository.kt28 tileSpec: TileSpec.CustomTileSpec,
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/domain/interactor/
DCurrentTilesInteractor.kt245 tileSpec is TileSpec.CustomTileSpec && in startTileCollection()
313 val toFree = currentSpecsCopy.intersect(specs).filterIsInstance<TileSpec.CustomTileSpec>() in removeTiles()
327 val toFree = currentSpecsCopy.minus(specs).filterIsInstance<TileSpec.CustomTileSpec>() in setTiles()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/impl/custom/data/repository/
DCustomTilePackageUpdatesRepository.kt53 private val tileSpec: TileSpec.CustomTileSpec,
DCustomTileRepository.kt103 private val tileSpec: TileSpec.CustomTileSpec, in restoreForTheUserIfNeeded()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/impl/custom/domain/interactor/
DCustomTileInteractor.kt46 private val tileSpec: TileSpec.CustomTileSpec,
DCustomTileDataInteractor.kt54 private val tileSpec: TileSpec.CustomTileSpec, in <lambda>()
DCustomTileServiceInteractor.kt57 private val tileSpec: TileSpec.CustomTileSpec,
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/qs/tiles/impl/custom/
DCustomTileKosmos.kt42 var Kosmos.customTileSpec: TileSpec.CustomTileSpec by Kosmos.Fixture()
/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/data/repository/
DAccessibilityQsShortcutsRepository.kt106 is TileSpec.CustomTileSpec -> { in notifyAccessibilityManagerTilesChanged()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/qs/panels/ui/viewmodel/
DEditModeViewModelTest.kt210 .filter { it.tileSpec is TileSpec.CustomTileSpec } in <lambda>()