Home
last modified time | relevance | path

Searched refs:selectionItem (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/ui/
DSelectionItemTest.kt19 val selectionItem = in testMatchBadComponentName_false() constant
30 selectionItem.matches( in testMatchBadComponentName_false()
37 assertThat(selectionItem.matches(SelectedItem.PanelItem("name", ComponentName("", "")))) in testMatchBadComponentName_false()
45 val selectionItem = in testMatchSameComponentName_panelSelected_true() constant
54 assertThat(selectionItem.matches(SelectedItem.PanelItem("name", componentName))).isTrue() in testMatchSameComponentName_panelSelected_true()
61 val selectionItem = in testMatchSameComponentName_panelSelection_true() constant
70 assertThat(selectionItem.matches(SelectedItem.PanelItem("name", componentName))).isTrue() in testMatchSameComponentName_panelSelection_true()
81 val selectionItem = in testMatchSameComponentSameStructure_true() constant
90 assertThat(selectionItem.matches(structureItem)).isTrue() in testMatchSameComponentSameStructure_true()
101 val selectionItem = in testMatchSameComponentDifferentStructure_false() constant
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/
DControlsUiControllerImpl.kt127 private var selectionItem: SelectionItem? = null in <lambda>() variable
234 selectionItem = null in <lambda>()
416 val selectionItem = findSelectionItem(selectedItem, panelsAndStructures) in <lambda>() constant
424 maybeUpdateSelectedItem(selectionItem) in <lambda>()
428 if (taskViewFactory.isPresent && selectionItem.isPanel) { in <lambda>()
429 createPanelView(selectionItem.panelComponentName!!) in <lambda>()
430 } else if (!selectionItem.isPanel) { in <lambda>()
432 .refreshBegin(selectionItem.uid, !keyguardStateController.isUnlocked()) in <lambda>()
433 createListView(selectionItem) in <lambda>()
435 Log.w(ControlsUiController.TAG, "Not TaskViewFactory to display panel $selectionItem") in <lambda>()
[all …]