Searched defs:imageElement (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/svg/
H A DSVGImageLoader.cpp44 SVGImageElement* imageElement = static_cast<SVGImageElement*>(element()); local
45 if (imageElement->externalResourcesRequiredBaseValue())
46 imageElement->sendSVGLoadEventIfPossible(true);
/external/webkit/Source/WebCore/html/
H A DImageDocument.h42 ImageDocumentElement* imageElement() const { return m_imageElement; } function in class:WebCore::ImageDocument
H A DHTMLMapElement.cpp83 HTMLImageElement* HTMLMapElement::imageElement() const function in class:WebCore::HTMLMapElement
92 HTMLImageElement* imageElement = static_cast<HTMLImageElement*>(curr); local
93 String useMapName = imageElement->getAttribute(usemapAttr).string().substring(1);
95 return imageElement;
H A DHTMLAreaElement.cpp175 HTMLImageElement* HTMLAreaElement::imageElement() const function in class:WebCore::HTMLAreaElement
181 return static_cast<HTMLMapElement*>(mapElement)->imageElement();
206 HTMLImageElement* imageElement = this->imageElement(); local
207 if (!imageElement)
210 RenderObject* renderer = imageElement->renderer();
222 HTMLImageElement* imageElement = this->imageElement();
223 if (!imageElement)
226 imageElement
[all...]
H A DImageDocument.cpp142 if (!isStopped() && document()->imageElement()) {
210 RefPtr<ImageDocumentElement> imageElement = ImageDocumentElement::create(this); local
212 imageElement->setAttribute(styleAttr, "-webkit-user-select: none");
213 imageElement->setLoadManually(true);
214 imageElement->setSrc(url().string());
216 body->appendChild(imageElement, ec);
223 imageElement->addEventListener("click", listener.release(), false);
226 m_imageElement = imageElement.get();
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGImage.cpp129 SVGImageElement* imageElement = static_cast<SVGImageElement*>(node()); local
130 if (imageElement->preserveAspectRatio().align() != SVGPreserveAspectRatio::SVG_PRESERVEASPECTRATIO_NONE)
131 imageElement->preserveAspectRatio().transformRect(destRect, srcRect);
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_pixmapruntime.cpp100 HTMLImageElement* imageElement = static_cast<HTMLImageElement*>(static_cast<JSHTMLImageElement*>(objectArg)->impl()); local
101 imageElement->setCachedImage(new CachedImage(stillImage.get()));
103 toJS(exec, global, imageElement->document());
305 HTMLImageElement* imageElement = static_cast<HTMLImageElement*>(elementJSWrapper->impl()); local
307 if (!imageElement)
310 CachedImage* cachedImage = imageElement->cachedImage();

Completed in 478 milliseconds