Home
last modified time | relevance | path

Searched refs:TimeRanges (Results 1 – 25 of 46) sorted by relevance

12

/external/webkit/Source/WebCore/html/
DTimeRanges.h38 class TimeRanges : public RefCounted<TimeRanges> {
40 static PassRefPtr<TimeRanges> create() in create()
42 return adoptRef(new TimeRanges); in create()
44 static PassRefPtr<TimeRanges> create(float start, float end) in create()
46 return adoptRef(new TimeRanges(start, end)); in create()
49 PassRefPtr<TimeRanges> copy();
62 TimeRanges() { } in TimeRanges() function
63 TimeRanges(float start, float end);
64 TimeRanges(const TimeRanges&);
DTimeRanges.cpp34 TimeRanges::TimeRanges(float start, float end) in TimeRanges() function in TimeRanges
39 PassRefPtr<TimeRanges> TimeRanges::copy() in copy()
41 RefPtr<TimeRanges> newSession = TimeRanges::create(); in copy()
50 float TimeRanges::start(unsigned index, ExceptionCode& ec) const in start()
59 float TimeRanges::end(unsigned index, ExceptionCode& ec) const in end()
68 void TimeRanges::add(float start, float end) in add()
111 bool TimeRanges::contain(float time) const in contain()
121 float TimeRanges::nearest(float time) const in nearest()
DHTMLMediaElement.h47 class TimeRanges; variable
97 PassRefPtr<TimeRanges> buffered() const;
118 PassRefPtr<TimeRanges> played();
119 PassRefPtr<TimeRanges> seekable() const;
337 RefPtr<TimeRanges> m_playedTimeRanges;
DHTMLMediaElement.idl43 readonly attribute TimeRanges buffered;
65 readonly attribute TimeRanges played;
66 readonly attribute TimeRanges seekable;
DHTMLMediaElement.cpp590 m_playedTimeRanges = TimeRanges::create(); in prepareForLoad()
1104 m_playedTimeRanges = TimeRanges::create(); in addPlayedRange()
1162 RefPtr<TimeRanges> seekableRanges = seekable(); in seek()
1707 RefPtr<TimeRanges> timeRanges = m_player->buffered(); in percentLoaded()
2084 PassRefPtr<TimeRanges> HTMLMediaElement::buffered() const in buffered()
2087 return TimeRanges::create(); in buffered()
2091 PassRefPtr<TimeRanges> HTMLMediaElement::played() in played()
2100 m_playedTimeRanges = TimeRanges::create(); in played()
2105 PassRefPtr<TimeRanges> HTMLMediaElement::seekable() const in seekable()
2109 return TimeRanges::create(); in seekable()
[all …]
DTimeRanges.idl30 ] TimeRanges {
/external/webkit/Source/WebCore/platform/graphics/android/layers/
DMediaPlayerPrivateAndroid.h76 virtual PassRefPtr<TimeRanges> buffered() const { return TimeRanges::create(); } in buffered()
/external/webkit/Source/WebCore/platform/graphics/avfoundation/
DMediaPlayerPrivateAVFoundation.h142 virtual PassRefPtr<TimeRanges> buffered() const;
194 virtual PassRefPtr<TimeRanges> platformBufferedTimeRanges() const = 0;
246 mutable RefPtr<TimeRanges> m_cachedLoadedTimeRanges;
DMediaPlayerPrivateAVFoundationObjC.h100 virtual PassRefPtr<TimeRanges> platformBufferedTimeRanges() const;
DMediaPlayerPrivateAVFoundationObjC.mm41 #import "TimeRanges.h"
452 PassRefPtr<TimeRanges> MediaPlayerPrivateAVFoundationObjC::platformBufferedTimeRanges() const
454 RefPtr<TimeRanges> timeRanges = TimeRanges::create();
/external/webkit/Source/WebKit/chromium/src/
DWebMediaPlayerClientImpl.cpp381 PassRefPtr<TimeRanges> WebMediaPlayerClientImpl::buffered() const in buffered()
387 RefPtr<TimeRanges> ranges = TimeRanges::create(); in buffered()
392 return TimeRanges::create(); in buffered()
DWebMediaPlayerClientImpl.h109 virtual WTF::PassRefPtr<WebCore::TimeRanges> buffered() const;
/external/webkit/Source/WebCore/platform/graphics/
DMediaPlayer.h99 class TimeRanges; variable
228 PassRefPtr<TimeRanges> buffered();
DMediaPlayerPrivate.h92 virtual PassRefPtr<TimeRanges> buffered() const = 0;
DMediaPlayer.cpp127 virtual PassRefPtr<TimeRanges> buffered() const { return TimeRanges::create(); } in buffered()
578 PassRefPtr<TimeRanges> MediaPlayer::buffered() in buffered()
/external/webkit/Source/WebCore/platform/graphics/wince/
DMediaPlayerPrivateWinCE.h71 PassRefPtr<TimeRanges> buffered() const;
/external/webkit/Source/WebCore/platform/graphics/qt/
DMediaPlayerPrivatePhonon.h105 PassRefPtr<TimeRanges> buffered() const;
DMediaPlayerPrivateQt.cpp336 PassRefPtr<TimeRanges> MediaPlayerPrivateQt::buffered() const in buffered()
338 RefPtr<TimeRanges> buffered = TimeRanges::create(); in buffered()
DMediaPlayerPrivateQt.h81 PassRefPtr<TimeRanges> buffered() const;
DMediaPlayerPrivatePhonon.cpp310 PassRefPtr<TimeRanges> MediaPlayerPrivatePhonon::buffered() const in buffered()
313 return TimeRanges::create(); in buffered()
/external/webkit/Source/WebCore/platform/graphics/gstreamer/
DMediaPlayerPrivateGStreamer.h89 PassRefPtr<TimeRanges> buffered() const;
/external/webkit/Source/WebCore/platform/graphics/win/
DMediaPlayerPrivateQuickTimeWin.h108 PassRefPtr<TimeRanges> buffered() const;
DMediaPlayerPrivateQuickTimeVisualContext.h100 PassRefPtr<TimeRanges> buffered() const;
DMediaPlayerPrivateQuickTimeWin.cpp423 PassRefPtr<TimeRanges> MediaPlayerPrivate::buffered() const in buffered()
425 RefPtr<TimeRanges> timeRanges = TimeRanges::create(); in buffered()
/external/webkit/Source/WebCore/platform/graphics/mac/
DMediaPlayerPrivateQTKit.h119 PassRefPtr<TimeRanges> buffered() const;

12