Home | History | Annotate | Download | only in tv

Lines Matching refs:Range

28 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,
275 * this is called. The range of the speed is from 2x to 5x.
292 * this is called. The range of the speed is from 2x to 5x.
848 private final Queue<Range<Long>> mProgramLoadQueue = new LinkedList<>();
903 Range<Long> period = Range.create(fetchStartTimeMs, endTimeMs);
928 Range<Long> current = mProgramLoadTask.getPeriod();
929 Iterator<Range<Long>> i = mProgramLoadQueue.iterator();
931 Range<Long> r = i.next();
952 Range<Long> next = mProgramLoadQueue.poll();
954 Iterator<Range<Long>> i = mProgramLoadQueue.iterator();
956 Range<Long> r = i.next();
973 private boolean addDummyPrograms(Range<Long> period) {
1180 mProgramLoadQueue.add(Range.create(startTimeMs, endTimeMs));
1189 Range<Long> period) {
1202 Iterator<Range<Long>> it = mProgramLoadQueue.iterator();
1204 Range<Long> r = it.next();
1265 public boolean overlaps(Queue<Range<Long>> programLoadQueue) {
1266 for (Range<Long> r : programLoadQueue) {