Home
last modified time | relevance | path

Searched refs:cue (Results 1 – 25 of 31) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/html/track/
DTextTrackCueList.cpp42 unsigned long TextTrackCueList::getCueIndex(TextTrackCue* cue) const in getCueIndex()
44 return m_list.find(cue); in getCueIndex()
70 RefPtr<TextTrackCue> cue = m_list[i]; in activeCues() local
71 if (cue->isActive()) in activeCues()
72 m_activeCues->add(cue); in activeCues()
77 bool TextTrackCueList::add(PassRefPtr<TextTrackCue> cue) in add() argument
79 ASSERT(cue->startTime() >= 0); in add()
80 ASSERT(cue->endTime() >= 0); in add()
82 return add(cue, 0, m_list.size()); in add()
92 RefPtr<TextTrackCue> cue = prpCue; in add() local
[all …]
DTextTrack.cpp233 RefPtr<TextTrackCue> cue = prpCue; in addCue() local
236 …if (std::isnan(cue->startTime()) || std::isnan(cue->endTime()) || cue->startTime() < 0 || cue->end… in addCue()
245 TextTrack* cueTrack = cue->track(); in addCue()
247 cueTrack->removeCue(cue.get(), ASSERT_NO_EXCEPTION); in addCue()
250 cue->setTrack(this); in addCue()
251 ensureTextTrackCueList()->add(cue); in addCue()
254 m_client->textTrackAddCue(this, cue.get()); in addCue()
257 void TextTrack::removeCue(TextTrackCue* cue, ExceptionState& exceptionState) in removeCue() argument
259 if (!cue) in removeCue()
268 if (cue->track() != this) { in removeCue()
[all …]
DInbandTextTrack.cpp97 RefPtr<VTTCue> cue = VTTCue::create(document(), start, end, content); in addWebVTTCue() local
98 cue->setId(id); in addWebVTTCue()
99 cue->parseSettings(settings); in addWebVTTCue()
100 addCue(cue); in addWebVTTCue()
DTextTrackCue.h50 DEFINE_STATIC_LOCAL(const AtomicString, cue, ("cue", AtomicString::ConstructFromLiteral)); in cueShadowPseudoId()
51 return cue; in cueShadowPseudoId()
DTextTrack.idl43 void addCue(TextTrackCue cue);
44 [RaisesException] void removeCue(TextTrackCue cue);
/external/chromium_org/media/webm/
Dwebm_webvtt_parser_unittest.cc23 static void DecodeCue(const Cue& cue, in DecodeCue() argument
27 WebMWebVTTParser::Parse(&cue[0], static_cast<int>(cue.size()), in DecodeCue()
39 const Cue cue = EncodeCue("", "", "Subtitle"); in TEST_F() local
42 DecodeCue(cue, &id, &settings, &content); in TEST_F()
53 const Cue cue = EncodeCue(idsrc, "", "Subtitle"); in TEST_F() local
56 DecodeCue(cue, &id, &settings, &content); in TEST_F()
74 const Cue cue = EncodeCue("", settings_str[i], "Subtitle"); in TEST_F() local
77 DecodeCue(cue, &id, &settings, &content); in TEST_F()
95 const Cue cue = EncodeCue("", "", content_str[i]); in TEST_F() local
98 DecodeCue(cue, &id, &settings, &content); in TEST_F()
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
DVTTCue.h44 static PassRefPtr<VTTCueBox> create(Document& document, VTTCue* cue) in create() argument
46 return adoptRef(new VTTCueBox(document, cue)); in create()
189 inline VTTCue* toVTTCue(TextTrackCue* cue) in toVTTCue() argument
192 return static_cast<VTTCue*>(cue); in toVTTCue()
DVTTParser.cpp431 …RefPtr<VTTCue> cue = VTTCue::create(*m_document, m_currentStartTime, m_currentEndTime, m_currentCo… in createNewCue() local
432 cue->setId(m_currentId); in createNewCue()
433 cue->parseSettings(m_currentSettings); in createNewCue()
435 m_cuelist.append(cue); in createNewCue()
DVTTCue.cpp127 VTTCueBox::VTTCueBox(Document& document, VTTCue* cue) in VTTCueBox() argument
129 , m_cue(cue) in VTTCueBox()
/external/libvpx/libvpx/
Dwebmenc.c253 struct cue_entry *cue, *new_cue_list; in write_webm_block() local
262 cue = &glob->cue_list[glob->cues]; in write_webm_block()
263 cue->time = glob->cluster_timecode; in write_webm_block()
264 cue->loc = glob->cluster_pos; in write_webm_block()
305 struct cue_entry *cue = &glob->cue_list[i]; in write_webm_file_footer() local
307 Ebml_SerializeUnsigned(glob, CueTime, cue->time); in write_webm_file_footer()
312 cue->loc - glob->position_reference); in write_webm_file_footer()
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLTrackElement.cpp295 void HTMLTrackElement::textTrackAddCue(TextTrack* track, PassRefPtr<TextTrackCue> cue) in textTrackAddCue() argument
298 return parent->textTrackAddCue(track, cue); in textTrackAddCue()
301 void HTMLTrackElement::textTrackRemoveCue(TextTrack* track, PassRefPtr<TextTrackCue> cue) in textTrackRemoveCue() argument
304 return parent->textTrackRemoveCue(track, cue); in textTrackRemoveCue()
DHTMLMediaElement.cpp1254 void HTMLMediaElement::textTrackAddCue(TextTrack* track, PassRefPtr<TextTrackCue> cue) in textTrackAddCue() argument
1261 double endTime = max(cue->startTime(), cue->endTime()); in textTrackAddCue()
1263 CueInterval interval = m_cueTree.createInterval(cue->startTime(), endTime, cue.get()); in textTrackAddCue()
1269 void HTMLMediaElement::textTrackRemoveCue(TextTrack*, PassRefPtr<TextTrackCue> cue) in textTrackRemoveCue() argument
1273 double endTime = max(cue->startTime(), cue->endTime()); in textTrackRemoveCue()
1275 CueInterval interval = m_cueTree.createInterval(cue->startTime(), endTime, cue.get()); in textTrackRemoveCue()
1281 cue->notifyRegionWhenRemovingDisplayTree(false); in textTrackRemoveCue()
1286 cue->setIsActive(false); in textTrackRemoveCue()
1288 cue->removeDisplayTree(); in textTrackRemoveCue()
1291 cue->notifyRegionWhenRemovingDisplayTree(true); in textTrackRemoveCue()
DHTMLMediaElement.h577 static String string(TextTrackCue* const& cue)
579 return cue->toString();
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DMediaControlElements.cpp730 TextTrackCue* cue = activeCues[i].data(); in updateDisplay() local
732 ASSERT(cue->isActive()); in updateDisplay()
733 if (!cue->track() || !cue->track()->isRendered() || !cue->isActive()) in updateDisplay()
736 cue->updateDisplay(m_videoDisplaySize.size(), *this); in updateDisplay()
/external/chromium_org/media/tools/layout_tests/result/
D2011-09-11-1935 ssS'media/track/track-webvtt-tc020-cue-size-align.html'
54 S'Tests cue size and alignment from settings.'
145 ssS'media/track/track-webvtt-tc007-cue-no-id.html'
151 S'Tests empty cue identifiers (they are optional), but makes sure "-->" found leads to discarded cu…
348 S'Tests cue alignment from settings.'
356 S'Tests cue vertical alignment (direction) from settings.'
377 ssS'media/track/track-webvtt-tc019-cue-size.html'
383 S'Tests cue size from settings.'
426 S'Tests cue timings that do not contain hours (they are optional), and tests various syntax errors …
461 S'Tests cue alignment, line and text position from settings.'
[all …]
D2011-09-11-1835 ssS'media/track/track-webvtt-tc020-cue-size-align.html'
54 S'Tests cue size and alignment from settings.'
145 ssS'media/track/track-webvtt-tc007-cue-no-id.html'
151 S'Tests empty cue identifiers (they are optional), but makes sure "-->" found leads to discarded cu…
348 S'Tests cue alignment from settings.'
356 S'Tests cue vertical alignment (direction) from settings.'
377 ssS'media/track/track-webvtt-tc019-cue-size.html'
383 S'Tests cue size from settings.'
426 S'Tests cue timings that do not contain hours (they are optional), and tests various syntax errors …
461 S'Tests cue alignment, line and text position from settings.'
[all …]
D2011-08-19-21274 …y multiple newlines \\n, \\r, and \\r\\n and that cue not properly separated are treated as one bi…
290 S'Tests that any text other than "-->" is recognized as optional cue identifier.'
503 S'Tests cue without timings are ignored.'
566 S'Tests empty cue identifiers (they are optional), but makes sure "-->" found leads to discarded cu…
574 S'Tests cue timings that contain hours (they are optional), and tests various syntax errors in timi…
582 S'Tests cue timings that do not contain hours (they are optional), and tests various syntax errors …
D2011-08-19-11261 …y multiple newlines \\n, \\r, and \\r\\n and that cue not properly separated are treated as one bi…
277 S'Tests cue timings that do not contain hours (they are optional), and tests various syntax errors …
482 S'Tests cue without timings are ignored.'
564 S'Tests empty cue identifiers (they are optional), but makes sure "-->" found leads to discarded cu…
572 S'Tests cue timings that contain hours (they are optional), and tests various syntax errors in timi…
580 S'Tests that any text other than "-->" is recognized as optional cue identifier.'
/external/chromium_org/media/tools/layout_tests/test_data/
Dmore264 …y multiple newlines \\n, \\r, and \\r\\n and that cue not properly separated are treated as one bi…
280 S'Tests cue timings that do not contain hours (they are optional), and tests various syntax errors …
485 S'Tests cue without timings are ignored.'
567 S'Tests empty cue identifiers (they are optional), but makes sure "-->" found leads to discarded cu…
575 S'Tests cue timings that contain hours (they are optional), and tests various syntax errors in timi…
583 S'Tests that any text other than "-->" is recognized as optional cue identifier.'
Dbase274 …y multiple newlines \\n, \\r, and \\r\\n and that cue not properly separated are treated as one bi…
290 S'Tests that any text other than "-->" is recognized as optional cue identifier.'
503 S'Tests cue without timings are ignored.'
566 S'Tests empty cue identifiers (they are optional), but makes sure "-->" found leads to discarded cu…
574 S'Tests cue timings that contain hours (they are optional), and tests various syntax errors in timi…
582 S'Tests cue timings that do not contain hours (they are optional), and tests various syntax errors …
Dless253 …y multiple newlines \\n, \\r, and \\r\\n and that cue not properly separated are treated as one bi…
269 S'Tests cue timings that do not contain hours (they are optional), and tests various syntax errors …
474 S'Tests cue without timings are ignored.'
556 S'Tests empty cue identifiers (they are optional), but makes sure "-->" found leads to discarded cu…
564 S'Tests cue timings that contain hours (they are optional), and tests various syntax errors in timi…
572 S'Tests that any text other than "-->" is recognized as optional cue identifier.'
Dmore_te_info261 …y multiple newlines \\n, \\r, and \\r\\n and that cue not properly separated are treated as one bi…
277 S'Tests cue timings that do not contain hours (they are optional), and tests various syntax errors …
482 S'Tests cue without timings are ignored.'
564 S'Tests empty cue identifiers (they are optional), but makes sure "-->" found leads to discarded cu…
572 S'Tests cue timings that contain hours (they are optional), and tests various syntax errors in timi…
580 S'Tests that any text other than "-->" is recognized as optional cue identifier.'
/external/chromium_org/third_party/WebKit/Source/core/css/
DmediaControls.css346 video::cue {
385 video::cue(:future) {
DCSSSelector.cpp337 DEFINE_STATIC_LOCAL(AtomicString, cue, ("cue(", AtomicString::ConstructFromLiteral)); in nameToPseudoTypeMap()
421 nameToPseudoType->set(cue.impl(), CSSSelector::PseudoCue); in nameToPseudoTypeMap()
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-US/
Den-US_klex.pkb337 …cropecrossedMcrossesecrowdsecrown)cruel"CJ!N'DcrushedMcue0cues0cuisine …

12