Searched refs:cue (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/track/
H A DTextTrackCueList.cpp43 unsigned long TextTrackCueList::getCueIndex(TextTrackCue* cue) const
45 return m_list.find(cue);
71 RefPtrWillBeRawPtr<TextTrackCue> cue = m_list[i]; local
72 if (cue->isActive())
73 m_activeCues->add(cue);
78 bool TextTrackCueList::add(PassRefPtrWillBeRawPtr<TextTrackCue> cue) argument
80 ASSERT(cue->startTime() >= 0);
81 ASSERT(cue->endTime() >= 0);
83 return add(cue, 0, m_list.size());
91 // Maintain text track cue orde
93 RefPtrWillBeRawPtr<TextTrackCue> cue = prpCue; local
110 remove(TextTrackCue* cue) argument
126 updateCueIndex(TextTrackCue* cue) argument
[all...]
H A DTextTrack.cpp216 // ... whose active flag was set when the script started, in text track cue
230 RefPtrWillBeRawPtr<TextTrackCue> cue = prpCue;
233 if (std::isnan(cue->startTime()) || std::isnan(cue->endTime()) || cue->startTime() < 0 || cue->endTime() < 0)
238 // The addCue(cue) method of TextTrack objects, when invoked, must run the following steps:
240 // 1. If the given cue is in a text track list of cues, then remove cue from that text track
242 TextTrack* cueTrack = cue
254 removeCue(TextTrackCue* cue, ExceptionState& exceptionState) argument
352 cueWillChange(TextTrackCue* cue) argument
362 cueDidChange(TextTrackCue* cue) argument
[all...]
H A DInbandTextTrack.cpp108 RefPtrWillBeRawPtr<VTTCue> cue = VTTCue::create(owner->document(), start, end, content); local
109 cue->setId(id);
110 cue->parseSettings(settings);
111 addCue(cue);
H A DTextTrack.idl44 void addCue(TextTrackCue cue);
45 [RaisesException] void removeCue(TextTrackCue cue);
H A DTextTrackCue.h51 DEFINE_STATIC_LOCAL(const AtomicString, cue, ("cue", AtomicString::ConstructFromLiteral));
52 return cue;
/external/chromium_org/media/formats/webm/
H A Dwebm_webvtt_parser_unittest.cc23 static void DecodeCue(const Cue& cue, argument
27 WebMWebVTTParser::Parse(&cue[0], static_cast<int>(cue.size()),
39 const Cue cue = EncodeCue("", "", "Subtitle"); local
42 DecodeCue(cue, &id, &settings, &content);
53 const Cue cue = EncodeCue(idsrc, "", "Subtitle"); local
56 DecodeCue(cue, &id, &settings, &content);
74 const Cue cue = EncodeCue("", settings_str[i], "Subtitle"); local
77 DecodeCue(cue, &id, &settings, &content);
95 const Cue cue local
[all...]
/external/libvpx/libvpx/
H A Dwebmenc.c251 /* Save a cue point if this is a keyframe. */
253 struct cue_entry *cue, *new_cue_list; local
260 fatal("Failed to realloc cue list.");
262 cue = &glob->cue_list[glob->cues];
263 cue->time = glob->cluster_timecode;
264 cue->loc = glob->cluster_pos;
305 struct cue_entry *cue = &glob->cue_list[i]; local
307 Ebml_SerializeUnsigned(glob, CueTime, cue->time);
312 cue->loc - glob->position_reference);
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTCue.h45 static PassRefPtrWillBeRawPtr<VTTCueBox> create(Document& document, VTTCue* cue) argument
47 return adoptRefWillBeNoop(new VTTCueBox(document, cue));
196 DEFINE_TYPE_CASTS(VTTCue, TextTrackCue, cue, true, true);
H A DVTTParser.cpp160 // Steps 17 - 20 - Allow any number of line terminators, then initialize new cue values.
164 // Step 21 - Cue creation (start a new cue).
172 // Steps 26 - 27 - Discard current cue if the line is empty.
178 // Steps 28 - 29 - Collect cue timings and settings.
183 // Steps 31 - 41 - Collect the cue text, create a cue, and add it to the output.
198 // If we're in the CueText state when we run out of data, we emit the pending cue.
254 // Collect WebVTT cue timings and settings. (5.3 WebVTT cue timings and settings parsing.)
258 // Steps 4 - 5 - Collect a WebVTT timestamp. If that fails, then abort and return failure. Otherwise, let cue'
369 RefPtrWillBeRawPtr<VTTCue> cue = VTTCue::create(*m_document, m_currentStartTime, m_currentEndTime, m_currentContent.toString()); local
[all...]
H A DVTTCue.cpp128 VTTCueBox::VTTCueBox(Document& document, VTTCue* cue) argument
130 , m_cue(cue)
176 // whose first cell is the value of the corresponding cue's text track cue
232 // the cue alive. Thus, if the cue is dead, either m_displayTree is not in
245 return String::format("%p id=%s interval=%f-->%f cue=%s)", this, id().utf8().data(), startTime(), endTime(), text().utf8().data());
310 // On setting, if the text track cue snap-to-lines flag is not set, and the new
317 // Otherwise, set the text track cue line position to the new value.
331 // Otherwise, set the text track cue tex
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DMediaControlElements.cpp722 // track's list of cues that have their text track cue active flag set.
725 // 9. If reset is false, then, for each text track cue cue in cues: if cue's
726 // text track cue display state has a set of CSS boxes, then add those boxes
727 // to output, and remove cue from cues.
730 // within the TextTrackCue instance itself. If parameters of the cue change,
733 // 10. For each text track cue cue in cues that has not yet had
734 // corresponding CSS boxes added to output, in text track cue orde
737 TextTrackCue* cue = activeCues[i].data(); local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvmuxer.cpp254 CuePoint* const cue = cue_entries_[i]; local
255 delete cue;
261 bool Cues::AddCue(CuePoint* cue) { argument
262 if (!cue)
288 cue->set_output_block_number(output_block_number_);
289 cue_entries_[cue_entries_size_++] = cue;
317 const CuePoint* const cue = GetCueByIndex(i); local
319 if (!cue)
322 size += cue->Size();
333 const CuePoint* const cue local
2237 CuePoint* const cue = new (std::nothrow) CuePoint(); // NOLINT local
[all...]
H A Dmkvmuxer.hpp130 // Class to hold one cue point in a Cues element.
171 // If true the muxer will write out the block number for the cue if the
185 // Adds a cue point to the Cues element. Returns true on success.
186 bool AddCue(CuePoint* cue);
188 // Returns the cue point by index. Returns NULL if there is no cue point
214 // If true the muxer will write out the block number for the cue if the
630 // The string identifier for this chapter (corresponds to WebVTT cue
869 // The file position used for cue points.
1026 // Adds a cue poin
[all...]
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvmuxer.cpp261 CuePoint* const cue = cue_entries_[i]; local
262 delete cue;
268 bool Cues::AddCue(CuePoint* cue) { argument
269 if (!cue)
295 cue->set_output_block_number(output_block_number_);
296 cue_entries_[cue_entries_size_++] = cue;
324 const CuePoint* const cue = GetCueByIndex(i); local
326 if (!cue)
329 size += cue->Size();
340 const CuePoint* const cue local
2352 CuePoint* const cue = new (std::nothrow) CuePoint(); // NOLINT local
[all...]
H A Dmkvmuxer.hpp131 // Class to hold one cue point in a Cues element.
172 // If true the muxer will write out the block number for the cue if the
186 // Adds a cue point to the Cues element. Returns true on success.
187 bool AddCue(CuePoint* cue);
189 // Returns the cue point by index. Returns NULL if there is no cue point
215 // If true the muxer will write out the block number for the cue if the
637 // The string identifier for this chapter (corresponds to WebVTT cue
903 // The file position used for cue points.
1059 // Adds a cue poin
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLMediaElement.cpp1135 // compare the two tracks by the relative cue order, so return the relative
1141 // relative text track cue order of the text track cues associated
1164 // The user agent must synchronously unset [the text track cue active] flag
1220 // 6 - If all of the cues in current cues have their text track cue active
1221 // flag set, none of the cues in other cues have their text track cue active
1242 // other cues that have their text track cue pause-on-exi flag set and that
1243 // either have their text track cue active flag set or are also in missed
1258 // list will be associated with a text track, a text track cue, and a time,
1266 // 9 - For each text track cue in missed cues, prepare an event named enter
1267 // for the TextTrackCue object with the text track cue star
1483 textTrackAddCue(TextTrack* track, PassRefPtrWillBeRawPtr<TextTrackCue> cue) argument
1498 textTrackRemoveCue(TextTrack*, PassRefPtrWillBeRawPtr<TextTrackCue> cue) argument
[all...]
H A DHTMLMediaElement.h623 static String string(TextTrackCue* const& cue) argument
625 return cue->toString();
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DmediaControls.css368 video::cue {
407 video::cue(:future) {
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DCssSchema.java488 Property cue = new Property(16, cueLiterals0, zeroFns);
489 builder.put("cue", cue);
713 builder.put("cue-after", cue);
714 builder.put("cue-before", cue);
820 "cue",
821 "cue-after",
822 "cue
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dcss.js397 "columns", "content", "counter-increment", "counter-reset", "crop", "cue",
398 "cue-after", "cue-before", "cursor", "direction", "display",
/external/owasp/sanitizer/distrib/lib/
H A Dowasp-java-html-sanitizer.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/owasp/ org/owasp/html/ org/owasp/html/AbstractTokenStream ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 204 milliseconds