Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/shared/
H A DTileSpec.kt51 data class CustomTileSpec dataClass
69 spec.componentName?.let { CustomTileSpec(spec, it) } ?: Invalid
73 fun create(component: ComponentName): CustomTileSpec {
74 return CustomTileSpec(CustomTile.toSpec(component), component)
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/pipeline/shared/
H A DTileSpecTest.kt48 assertThat(tileSpec is TileSpec.CustomTileSpec).isTrue()
50 assertThat((tileSpec as TileSpec.CustomTileSpec).componentName).isEqualTo(componentName)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/domain/interactor/
H A DCurrentTilesInteractor.kt225 tileSpec is TileSpec.CustomTileSpec &&
285 val toFree = currentSpecsCopy.intersect(specs).filterIsInstance<TileSpec.CustomTileSpec>()
299 val toFree = currentSpecsCopy.minus(specs).filterIsInstance<TileSpec.CustomTileSpec>()