/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLVideoElement.cpp | 46 inline HTMLVideoElement::HTMLVideoElement(Document& document, bool createdByParser) in HTMLVideoElement() function in WebCore::HTMLVideoElement 54 PassRefPtr<HTMLVideoElement> HTMLVideoElement::create(Document& document, bool createdByParser) in create() 56 … RefPtr<HTMLVideoElement> videoElement(adoptRef(new HTMLVideoElement(document, createdByParser))); in create() 61 bool HTMLVideoElement::rendererIsNeeded(const RenderStyle& style) in rendererIsNeeded() 66 RenderObject* HTMLVideoElement::createRenderer(RenderStyle*) in createRenderer() 71 void HTMLVideoElement::attach(const AttachContext& context) in attach() 85 void HTMLVideoElement::collectStyleForPresentationAttribute(const QualifiedName& name, const Atomic… in collectStyleForPresentationAttribute() 95 bool HTMLVideoElement::isPresentationAttribute(const QualifiedName& name) const in isPresentationAttribute() 102 void HTMLVideoElement::parseAttribute(const QualifiedName& name, const AtomicString& value) in parseAttribute() 120 bool HTMLVideoElement::supportsFullscreen() const in supportsFullscreen() [all …]
|
D | HTMLVideoElement.h | 36 class HTMLVideoElement FINAL : public HTMLMediaElement { 38 static PassRefPtr<HTMLVideoElement> create(Document&, bool createdByParser = false); 65 HTMLVideoElement(Document&, bool); 99 DEFINE_NODE_TYPE_CASTS(HTMLVideoElement, hasTagName(HTMLNames::videoTag));
|
D | MediaDocument.cpp | 89 RefPtr<HTMLVideoElement> media = HTMLVideoElement::create(*document()); in createDocumentStructure() 132 static inline HTMLVideoElement* descendentVideoElement(Node* root) in descendentVideoElement() 151 HTMLVideoElement* video = descendentVideoElement(targetNode); in defaultEventHandler()
|
D | HTMLVideoElement.idl | 28 ] interface HTMLVideoElement : HTMLMediaElement {
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderVideo.h | 34 class HTMLVideoElement; variable 38 RenderVideo(HTMLVideoElement*); 51 inline HTMLVideoElement* videoElement() const;
|
D | RenderVideo.cpp | 46 RenderVideo::RenderVideo(HTMLVideoElement* video) in RenderVideo() 91 HTMLVideoElement* video = videoElement(); in calculateIntrinsicSize() 103 if (player && video->readyState() >= HTMLVideoElement::HAVE_METADATA) { in calculateIntrinsicSize() 194 HTMLVideoElement* RenderVideo::videoElement() const in videoElement()
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
D | ImageBitmap.h | 18 class HTMLVideoElement; variable 25 static PassRefPtr<ImageBitmap> create(HTMLVideoElement*, const IntRect&); 45 ImageBitmap(HTMLVideoElement*, const IntRect&);
|
D | ImageBitmap.cpp | 57 ImageBitmap::ImageBitmap(HTMLVideoElement* video, const IntRect& cropRect) in ImageBitmap() 158 PassRefPtr<ImageBitmap> ImageBitmap::create(HTMLVideoElement* video, const IntRect& cropRect) in create()
|
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/ |
D | HTMLVideoElementMediaSource.h | 38 class HTMLVideoElement; variable 43 static PassRefPtr<VideoPlaybackQuality> getVideoPlaybackQuality(HTMLVideoElement*);
|
D | HTMLVideoElementMediaSource.cpp | 43 …aybackQuality> HTMLVideoElementMediaSource::getVideoPlaybackQuality(HTMLVideoElement* videoElement) in getVideoPlaybackQuality()
|
D | HTMLVideoElementMediaSource.idl | 30 partial interface HTMLVideoElement {
|
/external/chromium_org/third_party/WebKit/Source/modules/imagebitmap/ |
D | ImageBitmapFactories.h | 53 class HTMLVideoElement; variable 65 static ScriptPromise createImageBitmap(EventTarget*, HTMLVideoElement*, ExceptionState&); 66 …static ScriptPromise createImageBitmap(EventTarget*, HTMLVideoElement*, int sx, int sy, int sw, in…
|
D | WindowImageBitmapFactories.idl | 37 [RaisesException] Promise createImageBitmap(HTMLVideoElement video); 38 …[RaisesException] Promise createImageBitmap(HTMLVideoElement video, long sx, long sy, long sw, lon…
|
D | ImageBitmapFactories.cpp | 59 static IntSize sizeFor(HTMLVideoElement* video) in sizeFor() 114 ScriptPromise ImageBitmapFactories::createImageBitmap(EventTarget* eventTarget, HTMLVideoElement* v… in createImageBitmap() 120 ScriptPromise ImageBitmapFactories::createImageBitmap(EventTarget* eventTarget, HTMLVideoElement* v… in createImageBitmap()
|
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
D | CanvasRenderingContext.h | 42 class HTMLVideoElement; variable 69 bool wouldTaintOrigin(const HTMLVideoElement*);
|
D | CanvasRenderingContext2D.h | 58 class HTMLVideoElement; variable 185 void drawImage(HTMLVideoElement*, float x, float y, ExceptionState&); 186 void drawImage(HTMLVideoElement*, float x, float y, float width, float height, ExceptionState&); 187 …void drawImage(HTMLVideoElement*, float sx, float sy, float sw, float sh, float dx, float dy, floa… 188 …void drawImage(HTMLVideoElement*, const FloatRect& srcRect, const FloatRect& dstRect, ExceptionSta…
|
D | CanvasRenderingContext.cpp | 69 bool CanvasRenderingContext::wouldTaintOrigin(const HTMLVideoElement* video) in wouldTaintOrigin()
|
D | CanvasRenderingContext2D.idl | 129 [RaisesException] void drawImage(HTMLVideoElement? video, float x, float y); 130 …[RaisesException] void drawImage(HTMLVideoElement? video, float x, float y, float width, float hei… 131 …[RaisesException] void drawImage(HTMLVideoElement? video, float sx, float sy, float sw, float sh, …
|
D | WebGLRenderingContext.h | 52 class HTMLVideoElement; variable 231 GC3Denum format, GC3Denum type, HTMLVideoElement*, ExceptionState&); 246 GC3Denum format, GC3Denum type, HTMLVideoElement*, ExceptionState&); 378 PassRefPtr<Image> videoFrameToImage(HTMLVideoElement*, BackingStoreCopy); 838 bool validateHTMLVideoElement(const char* functionName, HTMLVideoElement*, ExceptionState&);
|
D | CanvasRenderingContext2D.cpp | 1222 static IntSize sizeFor(HTMLVideoElement* video) in sizeFor() 1540 void CanvasRenderingContext2D::drawImage(HTMLVideoElement* video, float x, float y, ExceptionState&… in drawImage() 1550 void CanvasRenderingContext2D::drawImage(HTMLVideoElement* video, in drawImage() 1561 void CanvasRenderingContext2D::drawImage(HTMLVideoElement* video, in drawImage() 1568 void CanvasRenderingContext2D::drawImage(HTMLVideoElement* video, const FloatRect& srcRect, const F… in drawImage()
|
D | WebGLRenderingContext.idl | 612 … GLenum format, GLenum type, HTMLVideoElement? video); 624 … GLenum format, GLenum type, HTMLVideoElement? video);
|
D | WebGLRenderingContext.cpp | 3488 PassRefPtr<Image> WebGLRenderingContext::videoFrameToImage(HTMLVideoElement* video, BackingStoreCop… in videoFrameToImage() 3503 GC3Denum format, GC3Denum type, HTMLVideoElement* video, ExceptionState& exceptionState) in texImage2D() 3708 GC3Denum format, GC3Denum type, HTMLVideoElement* video, ExceptionState& exceptionState) in texSubImage2D() 5180 bool WebGLRenderingContext::validateHTMLVideoElement(const char* functionName, HTMLVideoElement* vi… in validateHTMLVideoElement()
|
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/ |
D | MediaControlElements.cpp | 692 HTMLVideoElement* video = toHTMLVideoElement(mediaElement); in updateDisplay()
|
/external/chromium_org/third_party/WebKit/Source/core/ |
D | webcore_html.target.linux-arm.mk | 118 third_party/WebKit/Source/core/html/HTMLVideoElement.cpp \
|
D | webcore_html.target.darwin-x86.mk | 118 third_party/WebKit/Source/core/html/HTMLVideoElement.cpp \
|