Home | History | Annotate | Download | only in subtitle

Lines Matching refs:cues

90      * @param runID mostly-unique ID for this run of data.  Subtitle cues
92 * display. Cues with runID of ~0 are discarded
93 * only at the deletion of the track object. Cues
96 * any of its cues (with this runID).
113 * Called when the active cues have changed, and the contents of the subtitle
119 // out-of-order times mean seeking or new active cues being added
131 // remove past cues
138 // add new cues
180 /* remove all cues (untangle all cross-links) */
194 if (DEBUG) Log.v(TAG, "Clearing " + mActiveCues.size() + " active cues");
292 // link-up cues in the same run
374 Vector<Cue> cues = mCues.get(timeMs);
375 if (cues == null) {
376 cues = new Vector<Cue>(2);
377 mCues.put(timeMs, cues);
378 } else if (cues.contains(cue)) {
379 // do not duplicate cues
383 cues.add(cue);
388 Vector<Cue> cues = mCues.get(timeMs);
389 if (cues != null) {
390 cues.remove(cue);
391 if (cues.size() == 0) {
398 // ignore non-positive-duration cues
496 // remove rest of the cues
506 public EntryIterator(SortedMap<Long, Vector<Cue> > cues) {
507 if (DEBUG) Log.v(TAG, cues + "");
508 mRemainingCues = cues;