Home
last modified time | relevance | path

Searched refs:HTMLImageElement (Results 1 – 25 of 61) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLImageElement.cpp45 HTMLImageElement::HTMLImageElement(Document& document, HTMLFormElement* form) in HTMLImageElement() function in WebCore::HTMLImageElement
57 PassRefPtr<HTMLImageElement> HTMLImageElement::create(Document& document) in create()
59 return adoptRef(new HTMLImageElement(document)); in create()
62 PassRefPtr<HTMLImageElement> HTMLImageElement::create(Document& document, HTMLFormElement* form) in create()
64 return adoptRef(new HTMLImageElement(document, form)); in create()
67 HTMLImageElement::~HTMLImageElement() in ~HTMLImageElement()
73 PassRefPtr<HTMLImageElement> HTMLImageElement::createForJSConstructor(Document& document, int width… in createForJSConstructor()
75 RefPtr<HTMLImageElement> image = adoptRef(new HTMLImageElement(document)); in createForJSConstructor()
83 bool HTMLImageElement::isPresentationAttribute(const QualifiedName& name) const in isPresentationAttribute()
90 void HTMLImageElement::collectStyleForPresentationAttribute(const QualifiedName& name, const Atomic… in collectStyleForPresentationAttribute()
[all …]
DHTMLImageElement.h35 class HTMLImageElement FINAL : public HTMLElement {
38 static PassRefPtr<HTMLImageElement> create(Document&);
39 static PassRefPtr<HTMLImageElement> create(Document&, HTMLFormElement*);
40 static PassRefPtr<HTMLImageElement> createForJSConstructor(Document&, int width, int height);
42 virtual ~HTMLImageElement();
87 explicit HTMLImageElement(Document&, HTMLFormElement* = 0);
123 DEFINE_NODE_TYPE_CASTS(HTMLImageElement, hasTagName(HTMLNames::imgTag));
DHTMLFormControlsCollection.cpp63 const Vector<HTMLImageElement*>& HTMLFormControlsCollection::formImageElements() const in formImageElements()
84 …const Vector<HTMLImageElement*>* imageElementsArray, const QualifiedName& attrName, const String& … in firstNamedItem()
98 HTMLImageElement* element = (*imageElementsArray)[i]; in firstNamedItem()
113 …const Vector<HTMLImageElement*>* imagesElements = ownerNode()->hasTagName(fieldsetTag) ? 0 : &form… in namedItem()
147 const Vector<HTMLImageElement*>& imageElementsArray = formImageElements(); in updateNameCache()
149 HTMLImageElement* element = imageElementsArray[i]; in updateNameCache()
DHTMLFormElement.h44 class HTMLImageElement; variable
70 void registerImgElement(HTMLImageElement*);
71 void removeImgElement(HTMLImageElement*);
118 const Vector<HTMLImageElement*>& imageElements() const { return m_imageElements; } in imageElements()
170 Vector<HTMLImageElement*> m_imageElements;
DImageDocument.h34 class HTMLImageElement; variable
44 HTMLImageElement* imageElement() const { return m_imageElement.get(); } in imageElement()
63 RefPtr<HTMLImageElement> m_imageElement;
DHTMLMapElement.h31 class HTMLImageElement; variable
42 HTMLImageElement* imageElement();
DHTMLFormControlsCollection.h33 class HTMLImageElement; variable
54 const Vector<HTMLImageElement*>& formImageElements() const;
DHTMLAreaElement.cpp181 HTMLImageElement* HTMLAreaElement::imageElement() const in imageElement()
205 HTMLImageElement* image = imageElement(); in rendererIsFocusable()
219 HTMLImageElement* imageElement = this->imageElement(); in setFocus()
235 HTMLImageElement* imageElement = this->imageElement(); in updateFocusAppearance()
DHTMLAreaElement.h32 class HTMLImageElement; variable
47 HTMLImageElement* imageElement() const;
DHTMLMapElement.cpp76 HTMLImageElement* HTMLMapElement::imageElement() in imageElement()
85 HTMLImageElement* imageElement = toHTMLImageElement(curr); in imageElement()
DHTMLImageElement.idl25 ] interface HTMLImageElement : HTMLElement {
DHTMLTagNames.in69 img interfaceName=HTMLImageElement, constructorNeedsFormElement
/external/chromium_org/third_party/WebKit/Source/core/frame/
DImageBitmapTest.cpp88 RefPtr<HTMLImageElement> imageElement = HTMLImageElement::create(*Document::create().get()); in TEST_F()
108 RefPtr<HTMLImageElement> imageNoCrop = HTMLImageElement::create(*Document::create().get()); in TEST_F()
112 … RefPtr<HTMLImageElement> imageInteriorCrop = HTMLImageElement::create(*Document::create().get()); in TEST_F()
116 … RefPtr<HTMLImageElement> imageExteriorCrop = HTMLImageElement::create(*Document::create().get()); in TEST_F()
120 RefPtr<HTMLImageElement> imageOutsideCrop = HTMLImageElement::create(*Document::create().get()); in TEST_F()
173 RefPtr<HTMLImageElement> image = HTMLImageElement::create(*Document::create().get()); in TEST_F()
DImageBitmap.h24 static PassRefPtr<ImageBitmap> create(HTMLImageElement*, const IntRect&);
32 PassRefPtr<HTMLImageElement> imageElement() const { return m_imageElement; } in imageElement()
44 ImageBitmap(HTMLImageElement*, const IntRect&);
57 RefPtr<HTMLImageElement> m_imageElement;
DImageBitmap.cpp40 ImageBitmap::ImageBitmap(HTMLImageElement* image, const IntRect& cropRect) in ImageBitmap()
152 PassRefPtr<ImageBitmap> ImageBitmap::create(HTMLImageElement* image, const IntRect& cropRect) in create()
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DCanvasRenderingContext2D.h57 class HTMLImageElement; variable
176 void drawImage(HTMLImageElement*, float x, float y, ExceptionState&);
177 void drawImage(HTMLImageElement*, float x, float y, float width, float height, ExceptionState&);
178 …void drawImage(HTMLImageElement*, float sx, float sy, float sw, float sh, float dx, float dy, floa…
179 …void drawImage(HTMLImageElement*, const FloatRect& srcRect, const FloatRect& dstRect, ExceptionSta…
180 …void drawImage(HTMLImageElement*, const FloatRect& srcRect, const FloatRect& dstRect, const Compos…
190 … void drawImageFromRect(HTMLImageElement*, float sx = 0, float sy = 0, float sw = 0, float sh = 0,
199 …PassRefPtr<CanvasPattern> createPattern(HTMLImageElement*, const String& repetitionType, Exception…
DCanvasRenderingContext.h41 class HTMLImageElement; variable
68 bool wouldTaintOrigin(const HTMLImageElement*);
DCanvasRenderingContext2D.idl123 [RaisesException] void drawImage(HTMLImageElement? image, float x, float y);
124 …[RaisesException] void drawImage(HTMLImageElement? image, float x, float y, float width, float hei…
125 …[RaisesException] void drawImage(HTMLImageElement? image, float sx, float sy, float sw, float sh, …
136 void drawImageFromRect(HTMLImageElement image,
153 …[RaisesException] CanvasPattern createPattern(HTMLImageElement? image, [TreatNullAs=NullString] DO…
DCanvasRenderingContext.cpp57 bool CanvasRenderingContext::wouldTaintOrigin(const HTMLImageElement* image) in wouldTaintOrigin()
DCanvasRenderingContext2D.cpp1209 static LayoutSize sizeFor(HTMLImageElement* image, ImageSizeType sizeType) in sizeFor()
1364 void CanvasRenderingContext2D::drawImage(HTMLImageElement* image, float x, float y, ExceptionState&… in drawImage()
1374 void CanvasRenderingContext2D::drawImage(HTMLImageElement* image, in drawImage()
1385 void CanvasRenderingContext2D::drawImage(HTMLImageElement* image, in drawImage()
1392 void CanvasRenderingContext2D::drawImage(HTMLImageElement* image, const FloatRect& srcRect, const F… in drawImage()
1397 void CanvasRenderingContext2D::drawImage(HTMLImageElement* image, const FloatRect& srcRect, const F… in drawImage()
1615 void CanvasRenderingContext2D::drawImageFromRect(HTMLImageElement* image, in drawImageFromRect()
1728 PassRefPtr<CanvasPattern> CanvasRenderingContext2D::createPattern(HTMLImageElement* image, in createPattern()
DWebGLRenderingContext.h51 class HTMLImageElement; variable
227 GC3Denum format, GC3Denum type, HTMLImageElement*, ExceptionState&);
242 GC3Denum format, GC3Denum type, HTMLImageElement*, ExceptionState&);
832 bool validateHTMLImageElement(const char* functionName, HTMLImageElement*, ExceptionState&);
/external/chromium_org/third_party/WebKit/Source/modules/imagebitmap/
DImageBitmapFactories.h52 class HTMLImageElement; variable
63 static ScriptPromise createImageBitmap(EventTarget*, HTMLImageElement*, ExceptionState&);
64 …static ScriptPromise createImageBitmap(EventTarget*, HTMLImageElement*, int sx, int sy, int sw, in…
DWindowImageBitmapFactories.idl35 [RaisesException] Promise createImageBitmap(HTMLImageElement image);
36 …[RaisesException] Promise createImageBitmap(HTMLImageElement image, long sx, long sy, long sw, lon…
DImageBitmapFactories.cpp52 static LayoutSize sizeFor(HTMLImageElement* image) in sizeFor()
74 ScriptPromise ImageBitmapFactories::createImageBitmap(EventTarget* eventTarget, HTMLImageElement* i… in createImageBitmap()
80 ScriptPromise ImageBitmapFactories::createImageBitmap(EventTarget* eventTarget, HTMLImageElement* i… in createImageBitmap()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderImage.cpp472HTMLImageElement* imageElt = (node() && node()->hasTagName(imgTag)) ? toHTMLImageElement(node()) :… in paintIntoRect()
530 HTMLImageElement* i = node() && node()->hasTagName(imgTag) ? toHTMLImageElement(node()) : 0; in imageMap()

123