Home
last modified time | relevance | path

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

/packages/apps/TV/common/src/com/android/tv/common/customization/
DCustomizationManager.java97 private final Map<String, List<CustomAction>> mRowIdToCustomActionsMap = new HashMap<>(); field in CustomizationManager
199 mRowIdToCustomActionsMap.clear(); in buildCustomActions()
231 List<CustomAction> actions = mRowIdToCustomActionsMap.get(rowId); in buildCustomActions()
234 mRowIdToCustomActionsMap.put(rowId, actions); in buildCustomActions()
240 for (List<CustomAction> actions : mRowIdToCustomActionsMap.values()) { in buildCustomActions()
246 for (String id : mRowIdToCustomActionsMap.keySet()) { in buildCustomActions()
247 for (CustomAction action : mRowIdToCustomActionsMap.get(id)) { in buildCustomActions()
269 return mRowIdToCustomActionsMap.get(rowId); in getCustomActions()