• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/WebCore-7600.1.25/html/

Lines Matching defs:cues

1283     // If the cues belong to different text tracks, it doesn't make sense to
1290 // relative text track cue order of the text track cues associated
1313 // 1 - Let current cues be a list of cues, initialized to contain all the
1314 // cues of all the hidden, showing, or showing by default text tracks of the
1331 // 2 - Let other cues be a list of cues, initialized to contain all the cues
1333 // element that are not present in current cues.
1343 // during normal playback, then let missed cues be the list of cues in other
1344 // cues whose start times are greater than or equal to last time and whose
1346 // Otherwise, let missed cues be an empty list.
1355 // Consider cues that may have been missed since the last seek time.
1379 // 6 - If all of the cues in current cues have their text track cue active
1380 // flag set, none of the cues in other cues have their text track cue active
1381 // flag set, and missed cues is empty, then abort these steps.
1402 // current playback position during normal playback, and there are cues in
1403 // other cues that have their text track cue pause-on-exi flag set and that
1405 // cues, then immediately pause the media element.
1427 // 9 - For each text track cue in missed cues, prepare an event named enter
1432 // 10 - For each text track [...] in missed cues, prepare an event
1447 // 10 - For each text track cue in other cues that has its text
1456 // 11 - For each text track cue in current cues that does not have its
1522 // 16 - Set the text track cue active flag of all the cues in the current
1523 // cues, and unset the text track cue active flag of all the cues in the
1524 // other cues.
1532 // Update the current active cues.
1599 textTrackAddCues(track, track->cues());
1644 void HTMLMediaElement::textTrackAddCues(TextTrack* track, const TextTrackCueList* cues)
1650 for (size_t i = 0; i < cues->length(); ++i)
1651 textTrackAddCue(track, cues->item(i));
1654 void HTMLMediaElement::textTrackRemoveCues(TextTrack*, const TextTrackCueList* cues)
1657 for (size_t i = 0; i < cues->length(); ++i)
1658 textTrackRemoveCue(cues->item(i)->track(), cues->item(i));
1666 // Negative duration cues need be treated in the interval tree as
1667 // zero-length cues.
1678 // Negative duration cues need to be treated in the interval tree as
1679 // zero-length cues.
3240 // 3. Associate the text track list of cues with the rules for updating the text track rendering appropriate
3244 // 5. Populate the new text track's list of cues with the cues parsed so far, folllowing the guidelines for exposing
3245 // cues, and begin updating it dynamically as necessary.
3408 TextTrackCueList* cues = track->cues();
3409 if (cues)
3410 textTrackRemoveCues(track, cues);
3475 // ... its text track mode to the text track hidden mode, and its text track list of cues to an empty list ...