/external/webkit/Source/WebCore/html/ |
TimeRanges.h | 38 class TimeRanges : public RefCounted<TimeRanges> { 40 static PassRefPtr<TimeRanges> create() 42 return adoptRef(new TimeRanges); 44 static PassRefPtr<TimeRanges> create(float start, float end) 46 return adoptRef(new TimeRanges(start, end)); 49 PassRefPtr<TimeRanges> copy(); 62 TimeRanges() { } 63 TimeRanges(float start, float end); 64 TimeRanges(const TimeRanges&) [all...] |
TimeRanges.cpp | 28 #include "TimeRanges.h" 34 TimeRanges::TimeRanges(float start, float end) 39 PassRefPtr<TimeRanges> TimeRanges::copy() 41 RefPtr<TimeRanges> newSession = TimeRanges::create(); 50 float TimeRanges::start(unsigned index, ExceptionCode& ec) const 59 float TimeRanges::end(unsigned index, ExceptionCode& ec) const 68 void TimeRanges::add(float start, float end) [all...] |
HTMLMediaElement.idl | 43 readonly attribute TimeRanges buffered; 65 readonly attribute TimeRanges played; 66 readonly attribute TimeRanges seekable;
|
TimeRanges.idl | 30 ] TimeRanges {
|
HTMLMediaElement.h | 47 class TimeRanges; 97 PassRefPtr<TimeRanges> buffered() const; 118 PassRefPtr<TimeRanges> played(); 119 PassRefPtr<TimeRanges> seekable() const; 337 RefPtr<TimeRanges> m_playedTimeRanges;
|
HTMLMediaElement.cpp | 66 #include "TimeRanges.h" 586 m_playedTimeRanges = TimeRanges::create(); [all...] |
/external/webkit/Source/WebCore/platform/graphics/android/ |
MediaPlayerPrivateAndroid.h | 34 #include "TimeRanges.h" 76 virtual PassRefPtr<TimeRanges> buffered() const { return TimeRanges::create(); }
|
/external/webkit/Source/WebCore/platform/graphics/avfoundation/ |
MediaPlayerPrivateAVFoundation.h | 142 virtual PassRefPtr<TimeRanges> buffered() const; 194 virtual PassRefPtr<TimeRanges> platformBufferedTimeRanges() const = 0; 246 mutable RefPtr<TimeRanges> m_cachedLoadedTimeRanges;
|
MediaPlayerPrivateAVFoundationObjC.mm | 41 #import "TimeRanges.h" 452 PassRefPtr<TimeRanges> MediaPlayerPrivateAVFoundationObjC::platformBufferedTimeRanges() const 454 RefPtr<TimeRanges> timeRanges = TimeRanges::create(); 457 return timeRanges.release(); 465 timeRanges->add(rangeStart, rangeEnd); 468 return timeRanges.release();
|
MediaPlayerPrivateAVFoundationObjC.h | 100 virtual PassRefPtr<TimeRanges> platformBufferedTimeRanges() const;
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
MediaPlayerPrivatePhonon.h | 105 PassRefPtr<TimeRanges> buffered() const;
|
MediaPlayerPrivateQt.cpp | 30 #include "TimeRanges.h" 336 PassRefPtr<TimeRanges> MediaPlayerPrivateQt::buffered() const 338 RefPtr<TimeRanges> buffered = TimeRanges::create();
|
MediaPlayerPrivateQt.h | 81 PassRefPtr<TimeRanges> buffered() const;
|
MediaPlayerPrivatePhonon.cpp | 31 #include "TimeRanges.h" 310 PassRefPtr<TimeRanges> MediaPlayerPrivatePhonon::buffered() const 313 return TimeRanges::create();
|
/external/webkit/Source/WebCore/platform/graphics/wince/ |
MediaPlayerPrivateWinCE.h | 71 PassRefPtr<TimeRanges> buffered() const;
|
/external/webkit/Source/WebKit/chromium/src/ |
WebMediaPlayerClientImpl.cpp | 18 #include "TimeRanges.h" 381 PassRefPtr<TimeRanges> WebMediaPlayerClientImpl::buffered() const 387 RefPtr<TimeRanges> ranges = TimeRanges::create(); 392 return TimeRanges::create();
|
/external/webkit/Source/WebCore/platform/graphics/gstreamer/ |
MediaPlayerPrivateGStreamer.cpp | 44 #include "TimeRanges.h" 666 PassRefPtr<TimeRanges> MediaPlayerPrivateGStreamer::buffered() const 668 RefPtr<TimeRanges> timeRanges = TimeRanges::create(); 670 return timeRanges.release(); 675 return timeRanges.release(); 681 return timeRanges.release(); 687 timeRanges->add(static_cast<float>((rangeStart * mediaDuration) / 100), 693 if (!timeRanges->length() [all...] |
MediaPlayerPrivateGStreamer.h | 89 PassRefPtr<TimeRanges> buffered() const;
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
MediaPlayerPrivateQuickTimeWin.cpp | 41 #include "TimeRanges.h" 423 PassRefPtr<TimeRanges> MediaPlayerPrivate::buffered() const 425 RefPtr<TimeRanges> timeRanges = TimeRanges::create(); 429 timeRanges->add(0, loaded); 430 return timeRanges.release();
|
MediaPlayerPrivateQuickTimeVisualContext.h | 100 PassRefPtr<TimeRanges> buffered() const;
|
MediaPlayerPrivateQuickTimeWin.h | 108 PassRefPtr<TimeRanges> buffered() const;
|
MediaPlayerPrivateQuickTimeVisualContext.cpp | 49 #include "TimeRanges.h" 569 PassRefPtr<TimeRanges> MediaPlayerPrivateQuickTimeVisualContext::buffered() const 571 RefPtr<TimeRanges> timeRanges = TimeRanges::create(); 575 timeRanges->add(0, loaded); 576 return timeRanges.release(); [all...] |
/external/webkit/Source/WebCore/platform/graphics/ |
MediaPlayer.cpp | 38 #include "TimeRanges.h" 127 virtual PassRefPtr<TimeRanges> buffered() const { return TimeRanges::create(); } 578 PassRefPtr<TimeRanges> MediaPlayer::buffered()
|
MediaPlayer.h | 99 class TimeRanges; 227 PassRefPtr<TimeRanges> buffered();
|
/external/webkit/Source/WebCore/platform/gtk/ |
RenderThemeGtk.cpp | 40 #include "TimeRanges.h" 543 RefPtr<TimeRanges> timeRanges = mediaElement->buffered(); 551 for (unsigned index = 0; index < timeRanges->length(); ++index) { 553 float start = timeRanges->start(index, ignoredException); 554 float end = timeRanges->end(index, ignoredException);
|