Home
last modified time | relevance | path

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

/packages/apps/TV/src/com/android/tv/menu/
DCustomizableOptionsRowAdapter.java26 private final List<CustomAction> mCustomActions; field in CustomizableOptionsRowAdapter
30 mCustomActions = customActions; in CustomizableOptionsRowAdapter()
47 if (mCustomActions != null) { in createActions()
49 for (int i = 0; i < mCustomActions.size(); i++) { in createActions()
52 CustomAction customAction = mCustomActions.get(i); in createActions()
71 getMainActivity().startActivitySafe(mCustomActions.get(position).getIntent()); in executeAction()
78 return mCustomActions; in getCustomActions()
/packages/apps/Car/tests/TestMediaApp/src/com/android/car/media/testmediaapp/loader/
DTmaMediaItemReader.java77 private final Map<String, TmaCustomAction> mCustomActions; field in TmaMediaItemReader
83 mCustomActions = enumNamesToValues(TmaMediaItem.TmaCustomAction.values()); in TmaMediaItemReader()
117 getEnumArray(json, Keys.CUSTOM_ACTIONS, mCustomActions), in fromJson()
/packages/apps/Car/tests/TestMediaApp/src/com/android/car/media/testmediaapp/
DTmaMediaItem.java86 final List<TmaCustomAction> mCustomActions; field in TmaMediaItem
104 mCustomActions = Collections.unmodifiableList(customActions); in TmaMediaItem()
163 mCustomActions, mMediaEvents, allChildren, null); in append()
DTmaPlayer.java122 for (TmaCustomAction action : mActiveItem.mCustomActions) { in setActiveItemState()