Searched refs:HTMLImageElement (Results 1 - 25 of 111) sorted by relevance

12345

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLPictureElement.cpp11 #include "core/html/HTMLImageElement.h"
27 for (HTMLImageElement* imageElement = Traversal<HTMLImageElement>::firstChild(*this); imageElement; imageElement = Traversal<HTMLImageElement>::nextSibling(*imageElement)) {
H A DHTMLImageElement.cpp24 #include "core/html/HTMLImageElement.h"
53 class HTMLImageElement::ViewportChangeListener FINAL : public MediaQueryListListener {
55 static RefPtrWillBeRawPtr<ViewportChangeListener> create(HTMLImageElement* element)
75 explicit ViewportChangeListener(HTMLImageElement* element) : m_element(element) { }
76 RawPtrWillBeMember<HTMLImageElement> m_element;
79 HTMLImageElement::HTMLImageElement(Document& document, HTMLFormElement* form, bool createdByParser) function in class:blink::HTMLImageElement
101 PassRefPtrWillBeRawPtr<HTMLImageElement> HTMLImageElement::create(Document& document)
103 return adoptRefWillBeNoop(new HTMLImageElement(documen
[all...]
H A DImageDocument.h34 class HTMLImageElement;
49 HTMLImageElement* imageElement() const { return m_imageElement.get(); }
72 RefPtrWillBeMember<HTMLImageElement> m_imageElement;
H A DHTMLMapElement.h31 class HTMLImageElement;
43 HTMLImageElement* imageElement();
H A DHTMLAreaElement.h32 class HTMLImageElement;
48 HTMLImageElement* imageElement() const;
H A DHTMLFormElement.h46 class HTMLImageElement;
72 void associate(HTMLImageElement&);
73 void disassociate(HTMLImageElement&);
119 const WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> >& imageElements();
148 void collectImageElements(Node& root, WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> >&);
172 WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> > m_imageElements;
H A DHTMLImageElement.h39 class HTMLImageElement FINAL : public HTMLElement, public CanvasImageSource {
44 static PassRefPtrWillBeRawPtr<HTMLImageElement> create(Document&);
45 static PassRefPtrWillBeRawPtr<HTMLImageElement> create(Document&, HTMLFormElement*, bool createdByParser);
46 static PassRefPtrWillBeRawPtr<HTMLImageElement> createForJSConstructor(Document&, int width, int height);
48 virtual ~HTMLImageElement();
103 explicit HTMLImageElement(Document&, HTMLFormElement* = 0, bool createdByParser = false);
H A DHTMLFormControlsCollection.h34 class HTMLImageElement;
61 const WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> >& formImageElements() const;
H A DHTMLMapElement.cpp32 #include "core/html/HTMLImageElement.h"
70 HTMLImageElement* HTMLMapElement::imageElement()
76 // The HTMLImageElement's useMap() value includes the '#' symbol at the beginning,
78 HTMLImageElement& imageElement = toHTMLImageElement(*curr);
H A DHTMLFormControlsCollection.cpp31 #include "core/html/HTMLImageElement.h"
67 const WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> >& HTMLFormControlsCollection::formImageElements() const
113 const WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> >* imageElementsArray, const QualifiedName& attrName, const String& name)
127 HTMLImageElement* element = (*imageElementsArray)[i];
144 const WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> >* imagesElements = isHTMLFieldSetElement(ownerNode()) ? 0 : &formImageElements();
179 const WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> >& imageElementsArray = formImageElements();
181 HTMLImageElement* element = imageElementsArray[i];
H A DHTMLImageElement.idl26 ] interface HTMLImageElement : HTMLElement {
H A DHTMLAreaElement.cpp26 #include "core/html/HTMLImageElement.h"
175 HTMLImageElement* HTMLAreaElement::imageElement() const
194 HTMLImageElement* image = imageElement();
208 HTMLImageElement* imageElement = this->imageElement();
224 HTMLImageElement* imageElement = this->imageElement();
H A DHTMLFormElement.cpp48 #include "core/html/HTMLImageElement.h"
186 WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> > images(imageElements());
189 WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> > images;
582 void HTMLFormElement::associate(HTMLImageElement& e)
588 void HTMLFormElement::disassociate(HTMLImageElement& e)
649 void HTMLFormElement::collectImageElements(Node& root, WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> >& elements)
652 for (HTMLImageElement* image = Traversal<HTMLImageElement>::firstWithin(root); image; image = Traversal<HTMLImageElement>::next(*image)) {
658 const WillBeHeapVector<RawPtrWillBeMember<HTMLImageElement> >
[all...]
H A DHTMLAnchorElement.cpp37 #include "core/html/HTMLImageElement.h"
130 HTMLImageElement& imageElement = toHTMLImageElement(*target);
H A DImageDocument.cpp40 #include "core/html/HTMLImageElement.h"
200 m_imageElement = HTMLImageElement::create(*this);
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DImageBitmap.h9 #include "core/html/HTMLImageElement.h"
27 static PassRefPtrWillBeRawPtr<ImageBitmap> create(HTMLImageElement*, const IntRect&);
35 PassRefPtrWillBeRawPtr<HTMLImageElement> imageElement() const { return m_imageElement; }
54 ImageBitmap(HTMLImageElement*, const IntRect&);
65 // ImageBitmaps constructed from HTMLImageElements hold a reference to the HTMLImageElement until
67 RefPtrWillBeMember<HTMLImageElement> m_imageElement;
H A DImageBitmapTest.cpp41 #include "core/html/HTMLImageElement.h"
81 // one held by the HTMLImageElement.
84 RefPtrWillBeRawPtr<HTMLImageElement> imageElement = HTMLImageElement::create(*Document::create().get());
101 // ImageBitmaps that have crop rects outside of the bounds of the HTMLImageElement do not have elevated CacheLiveResourcePriority.
104 RefPtrWillBePersistent<HTMLImageElement> imageNoCrop = HTMLImageElement::create(*Document::create().get());
108 RefPtrWillBePersistent<HTMLImageElement> imageInteriorCrop = HTMLImageElement::create(*Document::create().get());
112 RefPtrWillBePersistent<HTMLImageElement> imageExteriorCro
[all...]
H A DImageBitmap.cpp38 ImageBitmap::ImageBitmap(HTMLImageElement* image, const IntRect& cropRect)
145 PassRefPtrWillBeRawPtr<ImageBitmap> ImageBitmap::create(HTMLImageElement* image, const IntRect& cropRect)
/external/chromium_org/third_party/WebKit/Source/core/imagebitmap/
H A DWindowImageBitmapFactories.idl36 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(HTMLImageElement image);
37 [CallWith=ScriptState, RaisesException] Promise createImageBitmap(HTMLImageElement image, long sx, long sy, long sw, long sh);
H A DImageBitmapFactories.h51 class HTMLImageElement;
61 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLImageElement*, ExceptionState&);
62 static ScriptPromise createImageBitmap(ScriptState*, EventTarget&, HTMLImageElement*, int sx, int sy, int sw, int sh, ExceptionState&);
H A DImageBitmapFactories.cpp41 #include "core/html/HTMLImageElement.h"
54 static LayoutSize sizeFor(HTMLImageElement* image)
80 ScriptPromise ImageBitmapFactories::createImageBitmap(ScriptState* scriptState, EventTarget& eventTarget, HTMLImageElement* image, ExceptionState& exceptionState)
86 ScriptPromise ImageBitmapFactories::createImageBitmap(ScriptState* scriptState, EventTarget& eventTarget, HTMLImageElement* image, int sx, int sy, int sw, int sh, ExceptionState& exceptionState)
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext2D.idl31 typedef (HTMLImageElement or
75 [RaisesException] CanvasPattern createPattern(HTMLImageElement image, DOMString? repetitionType);
113 [RaisesException] void drawImage(HTMLImageElement image, unrestricted float x, unrestricted float y);
114 [RaisesException] void drawImage(HTMLImageElement image, unrestricted float x, unrestricted float y, unrestricted float width, unrestricted float height);
115 [RaisesException] void drawImage(HTMLImageElement image, unrestricted float sx, unrestricted float sy, unrestricted float sw, unrestricted float sh, unrestricted float dx, unrestricted float dy, unrestricted float dw, unrestricted float dh);
180 HTMLImageElement? image, optional unrestricted float sx, optional unrestricted float sy, optional unrestricted float sw, optional unrestricted float sh,
H A DCanvasRenderingContext2D.h61 class HTMLImageElement;
188 void drawImageFromRect(HTMLImageElement*, float sx = 0, float sy = 0, float sw = 0, float sh = 0,
/external/chromium_org/ui/accessibility/extensions/alt/
H A Dhide-images.js45 addedNode.ownerDocument.defaultView.HTMLImageElement)) {
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DImagePainter.cpp13 #include "core/html/HTMLImageElement.h"
179 HTMLImageElement* imageElt = isHTMLImageElement(m_renderImage.node()) ? toHTMLImageElement(m_renderImage.node()) : 0;

Completed in 5635 milliseconds

12345