Home
last modified time | relevance | path

Searched refs:qsTile (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/external/
DCustomTileTest.kt197 customTile.qsTile.icon = mock(Icon::class.java) in testValueUpdatedInBooleanTile()
198 `when`(customTile.qsTile.icon.loadDrawable(any(Context::class.java))) in testValueUpdatedInBooleanTile()
204 customTile.qsTile.state = Tile.STATE_INACTIVE in testValueUpdatedInBooleanTile()
208 customTile.qsTile.state = Tile.STATE_ACTIVE in testValueUpdatedInBooleanTile()
212 customTile.qsTile.state = Tile.STATE_UNAVAILABLE in testValueUpdatedInBooleanTile()
219 customTile.qsTile.icon = mock(Icon::class.java) in testNoCrashOnNullDrawable()
220 `when`(customTile.qsTile.icon.loadDrawable(any(Context::class.java))) in testNoCrashOnNullDrawable()
269 tile.qsTile.icon = mock(Icon::class.java) in testPersistedStateRetrieved()
270 `when`(tile.qsTile.icon.loadDrawable(any(Context::class.java))) in testPersistedStateRetrieved()
275 tile.qsTile.activityLaunchForClick = pi in testPersistedStateRetrieved()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/haptics/qs/
DQSLongPressEffect.kt56 var qsTile: QSTile? = null variable in com.android.systemui.haptics.qs.QSLongPressEffect
135 qsTile?.longClick(expandable) in handleAnimationComplete()
138 qsTile?.longClick(expandable) in handleAnimationComplete()
160 qsTile?.let { in onTileClick()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/pipeline/domain/interactor/
DCurrentTilesInteractor.kt395 val qsTile = tileOrNotInstalled.tile in processExistingTile() constant
397 !qsTile.isAvailable -> { in processExistingTile()
402 qsTile.destroy() in processExistingTile()
407 qsTile !is CustomTile -> { in processExistingTile()
411 qsTile.userSwitch(user) in processExistingTile()
414 qsTile in processExistingTile()
416 qsTile.user == user -> { in processExistingTile()
418 qsTile in processExistingTile()
422 qsTile.destroy() in processExistingTile()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/haptics/qs/
DQSLongPressEffectTest.kt51 private val qsTile = kosmos.qsTileFactory.createTile("Test Tile") constant
74 longPressEffect.qsTile = qsTile in setup()
252 longPressEffect.qsTile = null in onTileClick_whileWaiting_withoutQSTile_cannotClick()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
DCustomTileInterface.kt26 val qsTile: Tile constant
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/impl/custom/domain/interactor/
DCustomTileServiceInteractor.kt178 override val qsTile: Tile constant in com.android.systemui.qs.tiles.impl.custom.domain.interactor.ReceivingInterface
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/qs/external/
DCloseShadeRightAfterClickTestB339290820.kt114 override val qsTile: Tile = Tile() constant
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tileimpl/
DQSTileViewImplTest.kt566 get() = longPressEffect?.qsTile != null
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
DQSTileViewImpl.kt413 longPressEffect.qsTile = tile in <lambda>()