HomeSort by relevance Sort by last modified time
    Searched refs:timeRanges (Results 1 - 8 of 8) sorted by null

  /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...]
  /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);
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
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();
  /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.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/mac/
MediaPlayerPrivateQTKit.mm 49 #import "TimeRanges.h"
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLMediaElement.cpp 66 #include "TimeRanges.h"
590 m_playedTimeRanges = TimeRanges::create();
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderThemeMac.mm 44 #import "TimeRanges.h"
    [all...]

Completed in 3042 milliseconds