Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/dagger/
H A DBaseAutoAddableModule.kt31 import com.android.systemui.qs.pipeline.domain.model.AutoAddable
47 ): Set<AutoAddable> {
56 @Binds @IntoSet fun bindCastAutoAddable(impl: CastAutoAddable): AutoAddable
58 @Binds @IntoSet fun bindDataSaverAutoAddable(impl: DataSaverAutoAddable): AutoAddable
60 @Binds @IntoSet fun bindDeviceControlsAutoAddable(impl: DeviceControlsAutoAddable): AutoAddable
62 @Binds @IntoSet fun bindHotspotAutoAddable(impl: HotspotAutoAddable): AutoAddable
64 @Binds @IntoSet fun bindNightDisplayAutoAddable(impl: NightDisplayAutoAddable): AutoAddable
68 fun bindReduceBrightColorsAutoAddable(impl: ReduceBrightColorsAutoAddable): AutoAddable
70 @Binds @IntoSet fun bindWalletAutoAddable(impl: WalletAutoAddable): AutoAddable
72 @Binds @IntoSet fun bindWorkModeAutoAddable(impl: WorkTileAutoAddable): AutoAddable
H A DQSAutoAddModule.kt24 import com.android.systemui.qs.pipeline.domain.model.AutoAddable
41 @Multibinds abstract fun providesAutoAddableSet(): Set<AutoAddable>
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/domain/autoaddable/
H A DAutoAddableSettingList.kt22 import com.android.systemui.qs.pipeline.domain.model.AutoAddable
31 ): Iterable<AutoAddable> {
H A DWalletAutoAddable.kt22 import com.android.systemui.qs.pipeline.domain.model.AutoAddable
40 ) : AutoAddable {
H A DCallbackControllerAutoAddable.kt22 import com.android.systemui.qs.pipeline.domain.model.AutoAddable
33 ) : AutoAddable {
H A DDeviceControlsAutoAddable.kt23 import com.android.systemui.qs.pipeline.domain.model.AutoAddable
42 ) : AutoAddable {
H A DWorkTileAutoAddable.kt24 import com.android.systemui.qs.pipeline.domain.model.AutoAddable
39 class WorkTileAutoAddable @Inject constructor(private val userTracker: UserTracker) : AutoAddable {
H A DNightDisplayAutoAddable.kt27 import com.android.systemui.qs.pipeline.domain.model.AutoAddable
46 ) : AutoAddable {
H A DAutoAddableSetting.kt22 import com.android.systemui.qs.pipeline.domain.model.AutoAddable
49 ) : AutoAddable {
H A DSafetyCenterAutoAddable.kt30 import com.android.systemui.qs.pipeline.domain.model.AutoAddable
53 ) : AutoAddable {
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/qs/pipeline/domain/autoaddable/
H A DFakeAutoAddable.kt22 import com.android.systemui.qs.pipeline.domain.model.AutoAddable
32 ) : AutoAddable {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/domain/model/
H A DAutoAddable.kt32 interface AutoAddable { regex
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/domain/interactor/
H A DAutoAddInteractor.kt26 import com.android.systemui.qs.pipeline.domain.model.AutoAddable
50 private val autoAddables: Set<@JvmSuppressWildcards AutoAddable>,
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/pipeline/domain/interactor/
H A DAutoAddInteractorTest.kt27 import com.android.systemui.qs.pipeline.domain.model.AutoAddable
186 private fun createInteractor(autoAddables: Set<AutoAddable>): AutoAddInteractor {