Home
last modified time | relevance | path

Searched refs:actionList (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/ui/viewmodel/
DScreenshotViewModel.kt69 val actionList = _actions.value.toMutableList() in addAction() constant
72 actionList.add(action) in addAction()
73 _actions.value = actionList in addAction()
78 val actionList = _actions.value.toMutableList() in setActionVisibility() constant
79 val index = actionList.indexOfFirst { it.id == actionId } in setActionVisibility()
81 actionList[index] = in setActionVisibility()
83 actionList[index].appearance, in setActionVisibility()
86 actionList[index].showDuringEntrance, in setActionVisibility()
87 actionList[index].onClicked in setActionVisibility()
89 _actions.value = actionList in setActionVisibility()
[all …]
/frameworks/base/packages/CarrierDefaultApp/src/com/android/carrierdefaultapp/
DCustomConfigLoader.java70 List<Integer> actionList = new ArrayList<>(); in loadCarrierActionList() local
73 return actionList; in loadCarrierActionList()
110 matchConfig(config, arg1, arg2, actionList); in loadCarrierActionList()
111 if (!actionList.isEmpty()) { in loadCarrierActionList()
113 if (VDBG) Log.d(TAG, "found match action list: " + actionList.toString()); in loadCarrierActionList()
114 return actionList; in loadCarrierActionList()
121 return actionList; in loadCarrierActionList()
137 List<Integer> actionList) { in matchConfig() argument
180 actionList.add(Integer.parseInt(idx)); in matchConfig()
DCarrierDefaultBroadcastReceiver.java39 List<Integer> actionList = CustomConfigLoader.loadCarrierActionList(context, intent); in onReceive() local
40 for (int actionIdx : actionList) { in onReceive()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/tv/
DTvPipMenuView.java599 RecyclerViewAdapter(List<TvPipAction> actionList) { in RecyclerViewAdapter() argument
600 this.mActionList = actionList; in RecyclerViewAdapter()
/frameworks/base/packages/SystemUI/src/com/android/systemui/user/domain/interactor/
DUserSwitcherInteractor.kt183 val actionList: List<UserActionModel> = in <lambda>() constant
197 actionList.map { in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/
DNotificationPanelViewControllerTest.java468 List<AccessibilityNodeInfo.AccessibilityAction> actionList = nodeInfo.getActionList(); in testA11y_initializeNode() local
469 assertThat(actionList).containsAtLeastElementsIn( in testA11y_initializeNode()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tileimpl/
DQSTileViewImplTest.kt355 info.actionList in testDisabledByPolicy_secondaryLabelText()