Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/external/
DCustomTileTest.kt242 val tileState = tile.state in testPersistedStateRetrieved() constant
244 assertEquals(state, tileState.state) in testPersistedStateRetrieved()
245 assertEquals(label, tileState.label) in testPersistedStateRetrieved()
246 assertEquals(subtitle, tileState.secondaryLabel) in testPersistedStateRetrieved()
247 assertEquals(contentDescription, tileState.contentDescription) in testPersistedStateRetrieved()
248 assertEquals(stateDescription, tileState.stateDescription) in testPersistedStateRetrieved()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/
DQSTileViewImpl.kt119 private var tileState = false in <lambda>() variable
319 if (tileState) R.string.switch_bar_on else R.string.switch_bar_off) in <lambda>()
324 info.isChecked = tileState in <lambda>()
341 sb.append(", tileState=$tileState") in <lambda>()
385 if (tileState != newState) { in <lambda>()
386 tileState = newState in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
DCustomTile.java392 int tileState = mTile.getState(); in handleUpdateState() local
394 tileState = Tile.STATE_UNAVAILABLE; in handleUpdateState()
396 state.state = tileState; in handleUpdateState()