Home
last modified time | relevance | path

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

/packages/apps/TV/src/com/android/tv/customization/
DTvCustomizationManager.java66 private final Map<String, List<CustomAction>> mRowIdToCustomActionsMap = new HashMap<>(); field in TvCustomizationManager
90 mRowIdToCustomActionsMap.clear(); in buildCustomActions()
123 List<CustomAction> actions = mRowIdToCustomActionsMap.get(rowId); in buildCustomActions()
126 mRowIdToCustomActionsMap.put(rowId, actions); in buildCustomActions()
132 for (List<CustomAction> actions : mRowIdToCustomActionsMap.values()) { in buildCustomActions()
138 for (String id : mRowIdToCustomActionsMap.keySet()) { in buildCustomActions()
139 for (CustomAction action : mRowIdToCustomActionsMap.get(id)) { in buildCustomActions()
154 return mRowIdToCustomActionsMap.get(rowId); in getCustomActions()