HomeSort by relevance Sort by last modified time
    Searched defs:TextTrackCue (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrackCue.cpp 34 #include "core/html/track/TextTrackCue.h"
95 TextTrackCueBox::TextTrackCueBox(Document* document, TextTrackCue* cue)
102 TextTrackCue* TextTrackCueBox::getCue() const
190 TextTrackCue::TextTrackCue(ScriptExecutionContext* context, double start, double end, const String& content)
224 TextTrackCue::~TextTrackCue()
229 PassRefPtr<TextTrackCueBox> TextTrackCue::createDisplayTree()
234 PassRefPtr<TextTrackCueBox> TextTrackCue::displayTreeInternal()
241 void TextTrackCue::cueWillChange(
    [all...]
TextTrackCue.h 46 class TextTrackCue;
52 static PassRefPtr<TextTrackCueBox> create(Document* document, TextTrackCue* cue)
57 TextTrackCue* getCue() const;
63 TextTrackCueBox(Document*, TextTrackCue*);
67 TextTrackCue* m_cue;
72 class TextTrackCue : public RefCounted<TextTrackCue>, public ScriptWrappable, public EventTarget {
74 static PassRefPtr<TextTrackCue> create(ScriptExecutionContext* context, double start, double end, const String& content)
76 return adoptRef(new TextTrackCue(context, start, end, content));
85 virtual ~TextTrackCue();
    [all...]
  /frameworks/base/media/java/android/media/
WebVttRenderer.java 378 class TextTrackCue extends SubtitleTrack.Cue {
405 TextTrackCue() {
421 if (!(o instanceof TextTrackCue)) {
429 TextTrackCue cue = (TextTrackCue) o;
565 private TextTrackCue mCue;
821 mCue = new TextTrackCue();
866 TextTrackCue.WRITING_DIRECTION_VERTICAL_RL;
869 TextTrackCue.WRITING_DIRECTION_VERTICAL_LR;
911 mCue.mAlignment = TextTrackCue.ALIGNMENT_START
    [all...]

Completed in 98 milliseconds