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

  /external/chromium_org/third_party/WebKit/Source/core/html/
TimeRanges.h 40 class TimeRanges : public RefCounted<TimeRanges>, public ScriptWrappable {
42 static PassRefPtr<TimeRanges> create()
44 return adoptRef(new TimeRanges);
46 static PassRefPtr<TimeRanges> create(double start, double end)
48 return adoptRef(new TimeRanges(start, end));
51 PassRefPtr<TimeRanges> copy() const;
52 void intersectWith(const TimeRanges*);
53 void unionWith(const TimeRanges*);
66 TimeRanges()
    [all...]
TimeRanges.cpp 27 #include "core/html/TimeRanges.h"
37 TimeRanges::TimeRanges(double start, double end)
43 PassRefPtr<TimeRanges> TimeRanges::copy() const
45 RefPtr<TimeRanges> newSession = TimeRanges::create();
54 void TimeRanges::invert()
56 RefPtr<TimeRanges> inverted = TimeRanges::create()
    [all...]

Completed in 2496 milliseconds