Home
last modified time | relevance | path

Searched refs:m_imageLoader (Results 1 – 15 of 15) sorted by relevance

/external/webkit/WebCore/html/
DHTMLImageElement.cpp45 , m_imageLoader(this) in HTMLImageElement()
87 m_imageLoader.updateFromElementIgnoringPreviousError(); in parseMappedAttribute()
172 if (renderer() && renderer()->isImage() && m_imageLoader.haveFiredBeforeLoadEvent()) { in attach()
176 imageObj->setCachedImage(m_imageLoader.image()); in attach()
180 if (!m_imageLoader.image() && !imageObj->cachedImage()) in attach()
195 if (!m_imageLoader.image()) in insertedIntoDocument()
196 m_imageLoader.updateFromElement(); in insertedIntoDocument()
246 if (m_imageLoader.image()) { in width()
248 return m_imageLoader.image()->imageSize(zoomFactor).width(); in width()
270 if (m_imageLoader.image()) { in height()
[all …]
DHTMLObjectElement.cpp81 if (!isImageType() && m_imageLoader) in parseMappedAttribute()
82 m_imageLoader.clear(); in parseMappedAttribute()
88 if (!m_imageLoader) in parseMappedAttribute()
89 m_imageLoader.set(new HTMLImageLoader(this)); in parseMappedAttribute()
90 m_imageLoader->updateFromElementIgnoringPreviousError(); in parseMappedAttribute()
154 if (!m_imageLoader) in attach()
155 m_imageLoader.set(new HTMLImageLoader(this)); in attach()
156 m_imageLoader->updateFromElement(); in attach()
162 toRenderImage(renderer())->setCachedImage(m_imageLoader->image()); in attach()
248 if (m_imageLoader && m_imageLoader->image()) { in renderFallbackContent()
[all …]
DHTMLVideoElement.cpp74 if (!m_imageLoader) in attach()
75 m_imageLoader.set(new HTMLImageLoader(this)); in attach()
76 m_imageLoader->updateFromElement(); in attach()
79 imageRenderer->setCachedImage(m_imageLoader->image()); in attach()
90 if (m_imageLoader) in detach()
91 m_imageLoader.clear(); in detach()
103 if (!m_imageLoader) in parseMappedAttribute()
104 m_imageLoader.set(new HTMLImageLoader(this)); in parseMappedAttribute()
105 m_imageLoader->updateFromElementIgnoringPreviousError(); in parseMappedAttribute()
DHTMLEmbedElement.cpp95 if (!isImageType() && m_imageLoader) in parseMappedAttribute()
96 m_imageLoader.clear(); in parseMappedAttribute()
102 if (!m_imageLoader) in parseMappedAttribute()
103 m_imageLoader.set(new HTMLImageLoader(this)); in parseMappedAttribute()
104 m_imageLoader->updateFromElementIgnoringPreviousError(); in parseMappedAttribute()
169 if (!m_imageLoader) in attach()
170 m_imageLoader.set(new HTMLImageLoader(this)); in attach()
171 m_imageLoader->updateFromElement(); in attach()
174 toRenderImage(renderer())->setCachedImage(m_imageLoader->image()); in attach()
DHTMLImageElement.h65 CachedImage* cachedImage() const { return m_imageLoader.image(); } in cachedImage()
66 void setCachedImage(CachedImage* i) { m_imageLoader.setImage(i); }; in setCachedImage()
68 void setLoadManually(bool loadManually) { m_imageLoader.setLoadManually(loadManually); } in setLoadManually()
101 bool haveFiredLoadEvent() const { return m_imageLoader.haveFiredLoadEvent(); } in haveFiredLoadEvent()
111 HTMLImageLoader m_imageLoader; variable
DHTMLInputElement.cpp876 if (inputType() != IMAGE && m_imageLoader) in setInputType()
877 m_imageLoader.clear(); in setInputType()
1112 if (!m_imageLoader) in parseMappedAttribute()
1113 m_imageLoader.set(new HTMLImageLoader(this)); in parseMappedAttribute()
1114 m_imageLoader->updateFromElementIgnoringPreviousError(); in parseMappedAttribute()
1225 if (!m_imageLoader) in attach()
1226 m_imageLoader.set(new HTMLImageLoader(this)); in attach()
1227 m_imageLoader->updateFromElement(); in attach()
1228 if (renderer() && m_imageLoader->haveFiredBeforeLoadEvent()) { in attach()
1230 imageObj->setCachedImage(m_imageLoader->image()); in attach()
[all …]
DHTMLPlugInImageElement.h43 OwnPtr<HTMLImageLoader> m_imageLoader; variable
DHTMLVideoElement.h83 OwnPtr<HTMLImageLoader> m_imageLoader; variable
DHTMLInputElement.h322 OwnPtr<HTMLImageLoader> m_imageLoader; variable
/external/webkit/WebCore/wml/
DWMLImageElement.cpp41 , m_imageLoader(this) in WMLImageElement()
76 m_imageLoader.updateFromElementIgnoringPreviousError(); in parseMappedAttribute()
97 if (renderer() && renderer()->isImage() && m_imageLoader.haveFiredBeforeLoadEvent()) { in attach()
101 imageObj->setCachedImage(m_imageLoader.image()); in attach()
105 if (!m_imageLoader.image() && !imageObj->cachedImage()) in attach()
119 if (!m_imageLoader.image()) in insertedIntoDocument()
120 m_imageLoader.updateFromElement(); in insertedIntoDocument()
DWMLImageElement.h51 WMLImageLoader m_imageLoader;
/external/webkit/WebCore/svg/
DSVGImageElement.cpp48 , m_imageLoader(this) in SVGImageElement()
92 m_imageLoader.updateFromElementIgnoringPreviousError(); in svgAttributeChanged()
152 return !externalResourcesRequiredBaseValue() || m_imageLoader.haveFiredLoadEvent(); in haveLoadedRequiredResources()
163 imageObj->setCachedImage(m_imageLoader.image()); in attach()
173 m_imageLoader.updateFromElement(); in insertedIntoDocument()
DSVGImageElement.h77 SVGImageLoader m_imageLoader;
/external/webkit/WebCore/
DChangeLog-2008-08-1075705 …(WebCore::HTMLVideoElement::HTMLVideoElement): Initialize m_imageLoader and m_shouldShowPosterImag…
DChangeLog-2009-06-1697173 an image, then clear m_imageLoader in the HTMLObjectElement so that we attempt to render the