Searched refs:mCustomActions (Results 1 – 4 of 4) sorted by relevance
547 List<PlaybackStateCompat.CustomAction> mCustomActions; field in PlaybackStateCompat565 mCustomActions = new ArrayList<>(customActions); in PlaybackStateCompat()578 mCustomActions = in.createTypedArrayList(CustomAction.CREATOR); in PlaybackStateCompat()596 bob.append(", custom actions=").append(mCustomActions); in toString()616 dest.writeTypedList(mCustomActions); in writeToParcel()707 return mCustomActions; in getCustomActions()829 if (mCustomActions != null) { in getPlaybackState()830 customActions = new ArrayList<>(mCustomActions.size()); in getPlaybackState()831 for (PlaybackStateCompat.CustomAction customAction : mCustomActions) { in getPlaybackState()1084 private final List<PlaybackStateCompat.CustomAction> mCustomActions = new ArrayList<>(); field in PlaybackStateCompat.Builder[all …]
290 private List<PlaybackState.CustomAction> mCustomActions; field in PlaybackState306 mCustomActions = new ArrayList<>(customActions); in PlaybackState()319 mCustomActions = in.createTypedArrayList(CustomAction.CREATOR); in PlaybackState()334 bob.append(", custom actions=").append(mCustomActions); in toString()354 dest.writeTypedList(mCustomActions); in writeToParcel()442 return mCustomActions; in getCustomActions()818 private final List<PlaybackState.CustomAction> mCustomActions = new ArrayList<>();851 if (from.mCustomActions != null) {852 mCustomActions.addAll(from.mCustomActions);1015 mCustomActions.add(customAction);[all …]
75 private List<RemoteAction> mCustomActions = new ArrayList<>(); field in PipControlsView208 if (!mCustomActions.isEmpty()) { in updateUserActions()210 while (mCustomButtonViews.size() < mCustomActions.size()) { in updateUserActions()219 mCustomButtonViews.get(i).setVisibility(i < mCustomActions.size() in updateUserActions()225 for (int i = 0; i < mCustomActions.size(); i++) { in updateUserActions()226 final RemoteAction action = mCustomActions.get(i); in updateUserActions()296 mCustomActions.clear(); in setActions()297 mCustomActions.addAll(actions); in setActions()
131 private ParceledListSlice mCustomActions; field in PipManager219 mCustomActions = actions; in onActionsChanged()222 mListeners.get(i).onPipMenuActionsChanged(mCustomActions); in onActionsChanged()472 intent.putExtra(PipMenuActivity.EXTRA_CUSTOM_ACTIONS, mCustomActions); in showPipMenu()