Searched refs:ScheduleRow (Results 1 – 6 of 6) sorted by relevance
56 private final Set<ScheduleRow> mPendingUpdate = new ArraySet<>();107 add(new ScheduleRow(recording, headerRow)); in start()136 if (get(i) instanceof ScheduleRow) { in stop()137 ScheduleRow row = (ScheduleRow) get(i); in stop()148 public ScheduleRow findRowByScheduledRecording(ScheduledRecording recording) { in findRowByScheduledRecording()154 if (item instanceof ScheduleRow && ((ScheduleRow) item).getSchedule() != null) { in findRowByScheduledRecording()155 if (((ScheduleRow) item).getSchedule().getId() == recording.getId()) { in findRowByScheduledRecording()156 return (ScheduleRow) item; in findRowByScheduledRecording()163 private ScheduleRow findRowWithStartRequest(ScheduledRecording schedule) { in findRowWithStartRequest()166 if (!(item instanceof ScheduleRow)) { in findRowWithStartRequest()[all …]
342 ScheduleRow row = (ScheduleRow) item; in onBindRowViewHolder()434 protected String onGetRecordingTimeText(ScheduleRow row) { in onGetRecordingTimeText()442 protected String onGetProgramInfoText(ScheduleRow row) { in onGetProgramInfoText()446 private String getChannelNameText(ScheduleRow row) { in getChannelNameText()457 protected void onInfoClicked(ScheduleRow scheduleRow) { in onInfoClicked()467 protected void onActionClicked(@ScheduleRowAction final int action, ScheduleRow row) { in onActionClicked()487 protected void onStartRecording(ScheduleRow row) { in onStartRecording()517 private void onStartRecordingInternal(ScheduleRow row) { in onStartRecordingInternal()543 protected void onStopRecording(ScheduleRow row) { in onStopRecording()564 protected void onCreateSchedule(ScheduleRow row) { in onCreateSchedule()[all …]
58 protected String onGetRecordingTimeText(ScheduleRow row) { in onGetRecordingTimeText()64 protected String onGetProgramInfoText(ScheduleRow row) { in onGetProgramInfoText()90 protected void onInfoClicked(ScheduleRow row) { in onInfoClicked()97 protected void onStartRecording(ScheduleRow row) { in onStartRecording()105 protected void onStopRecording(ScheduleRow row) { in onStopRecording()113 protected void onCreateSchedule(ScheduleRow row) { in onCreateSchedule()123 protected int[] getAvailableActions(ScheduleRow row) { in getAvailableActions()
28 public class ScheduleRow { class34 public ScheduleRow(@Nullable ScheduledRecording recording, SchedulesHeaderRow headerRow) { in ScheduleRow() method in ScheduleRow
53 presenterSelector.addClassPresenter(ScheduleRow.class, onCreateRowPresenter()); in onCreate()136 if (mRowsAdapter.get(i) instanceof ScheduleRow) { in getFirstItemPosition()
28 public class EpisodicProgramRow extends ScheduleRow {