Home | History | Annotate | Download | only in tv

Lines Matching refs:Range

29 import android.util.Range;
124 * If the current position enters within this range from the recording start time, rewind action
126 * Similarly, if the current position enters within this range from the current system time,
132 * If the current position goes out of this range from the recording start time, rewind action
134 * Similarly, if the current position goes out of this range from the current system time,
268 * this is called. The range of the speed is from 2x to 5x.
285 * this is called. The range of the speed is from 2x to 5x.
846 private final Queue<Range<Long>> mProgramLoadQueue = new LinkedList<>();
903 Range<Long> period = Range.create(fetchStartTimeMs, fetchEndTimeMs);
917 Range<Long> current = mProgramLoadTask.getPeriod();
918 Iterator<Range<Long>> i = mProgramLoadQueue.iterator();
920 Range<Long> r = i.next();
934 Range<Long> next = mProgramLoadQueue.poll();
936 Iterator<Range<Long>> i = mProgramLoadQueue.iterator();
938 Range<Long> r = i.next();
955 private boolean addDummyPrograms(Range<Long> period) {
1171 mProgramLoadQueue.add(Range.create(startTimeMs, endTimeMs));
1180 Range<Long> period) {
1193 Iterator<Range<Long>> it = mProgramLoadQueue.iterator();
1195 Range<Long> r = it.next();
1258 boolean overlaps(Queue<Range<Long>> programLoadQueue) {
1259 for (Range<Long> r : programLoadQueue) {