OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TimeRanges
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/html/
TimeRanges.h
41
class
TimeRanges
: public RefCounted<
TimeRanges
>, public ScriptWrappable {
43
static PassRefPtr<
TimeRanges
> create()
45
return adoptRef(new
TimeRanges
);
47
static PassRefPtr<
TimeRanges
> create(double start, double end)
49
return adoptRef(new
TimeRanges
(start, end));
51
static PassRefPtr<
TimeRanges
> create(const blink::WebTimeRanges&);
53
PassRefPtr<
TimeRanges
> copy() const;
54
void intersectWith(const
TimeRanges
*);
55
void unionWith(const
TimeRanges
*);
[
all
...]
TimeRanges.cpp
27
#include "core/html/
TimeRanges
.h"
37
TimeRanges
::
TimeRanges
(double start, double end)
43
PassRefPtr<
TimeRanges
>
TimeRanges
::create(const blink::WebTimeRanges& webRanges)
45
RefPtr<
TimeRanges
> ranges =
TimeRanges
::create();
54
PassRefPtr<
TimeRanges
>
TimeRanges
::copy() const
56
RefPtr<
TimeRanges
> newSession = TimeRanges::create()
[
all
...]
Completed in 37 milliseconds