Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/html/
DImageInputType.cpp107 if (!m_imageLoader) in srcAttributeChanged()
108 m_imageLoader = adoptPtr(new HTMLImageLoader(element())); in srcAttributeChanged()
109 m_imageLoader->updateFromElementIgnoringPreviousError(); in srcAttributeChanged()
116 if (!m_imageLoader) in attach()
117 m_imageLoader = adoptPtr(new HTMLImageLoader(element())); in attach()
118 m_imageLoader->updateFromElement(); in attach()
124 if (!m_imageLoader->haveFiredBeforeLoadEvent()) in attach()
128 imageResource->setCachedImage(m_imageLoader->image()); in attach()
132 if (!m_imageLoader->image() && !imageResource->cachedImage()) in attach()
139 if (m_imageLoader) in willMoveToNewOwnerDocument()
[all …]
DHTMLVideoElement.cpp77 if (!m_imageLoader) in attach()
78 m_imageLoader = adoptPtr(new HTMLImageLoader(this)); in attach()
79 m_imageLoader->updateFromElement(); in attach()
81 toRenderImage(renderer())->imageResource()->setCachedImage(m_imageLoader->image()); in attach()
90 if (!shouldDisplayPosterImage() && m_imageLoader) in detach()
91 m_imageLoader.clear(); in detach()
104 if (!m_imageLoader) in parseMappedAttribute()
105 m_imageLoader = adoptPtr(new HTMLImageLoader(this)); in parseMappedAttribute()
106 m_imageLoader->updateFromElementIgnoringPreviousError(); in parseMappedAttribute()
108 if (m_imageLoader) in parseMappedAttribute()
[all …]
DHTMLImageElement.cpp46 , m_imageLoader(this) in HTMLImageElement()
108 m_imageLoader.updateFromElementIgnoringPreviousError(); in parseMappedAttribute()
195 if (renderer() && renderer()->isImage() && m_imageLoader.haveFiredBeforeLoadEvent()) { in attach()
200 renderImageResource->setCachedImage(m_imageLoader.image()); in attach()
204 if (!m_imageLoader.image() && !renderImageResource->cachedImage()) in attach()
219 if (!m_imageLoader.image()) in insertedIntoDocument()
220 m_imageLoader.updateFromElement(); in insertedIntoDocument()
270 if (m_imageLoader.image()) in width()
271 return m_imageLoader.image()->imageSize(1.0f).width(); in width()
293 if (m_imageLoader.image()) in height()
[all …]
DHTMLImageElement.h56 CachedImage* cachedImage() const { return m_imageLoader.image(); } in cachedImage()
57 void setCachedImage(CachedImage* i) { m_imageLoader.setImage(i); }; in setCachedImage()
59 void setLoadManually(bool loadManually) { m_imageLoader.setLoadManually(loadManually); } in setLoadManually()
75 bool haveFiredLoadEvent() const { return m_imageLoader.haveFiredLoadEvent(); } in haveFiredLoadEvent()
102 HTMLImageLoader m_imageLoader; variable
DHTMLPlugInImageElement.cpp144 if (!m_imageLoader) in attach()
145 m_imageLoader = adoptPtr(new HTMLImageLoader(this)); in attach()
146 m_imageLoader->updateFromElement(); in attach()
187 if (m_imageLoader) in willMoveToNewOwnerDocument()
188 m_imageLoader->elementWillMoveToNewOwnerDocument(); in willMoveToNewOwnerDocument()
DHTMLObjectElement.cpp89 if (!isImageType() && m_imageLoader) in parseMappedAttribute()
90 m_imageLoader.clear(); in parseMappedAttribute()
96 if (!m_imageLoader) in parseMappedAttribute()
97 m_imageLoader = adoptPtr(new HTMLImageLoader(this)); in parseMappedAttribute()
98 m_imageLoader->updateFromElementIgnoringPreviousError(); in parseMappedAttribute()
378 …if (m_imageLoader && m_imageLoader->image() && m_imageLoader->image()->status() != CachedResource:… in renderFallbackContent()
379 m_serviceType = m_imageLoader->image()->response().mimeType(); in renderFallbackContent()
382 m_imageLoader->setImage(0); in renderFallbackContent()
DHTMLEmbedElement.cpp97 if (!isImageType() && m_imageLoader) in parseMappedAttribute()
98 m_imageLoader.clear(); in parseMappedAttribute()
104 if (!m_imageLoader) in parseMappedAttribute()
105 m_imageLoader = adoptPtr(new HTMLImageLoader(this)); in parseMappedAttribute()
106 m_imageLoader->updateFromElementIgnoringPreviousError(); in parseMappedAttribute()
DImageInputType.h65 OwnPtr<HTMLImageLoader> m_imageLoader; variable
DHTMLPlugInImageElement.h58 OwnPtr<HTMLImageLoader> m_imageLoader; variable
DHTMLVideoElement.h92 OwnPtr<HTMLImageLoader> m_imageLoader; variable
/external/webkit/Source/WebCore/wml/
DWMLImageElement.cpp41 , m_imageLoader(this) in WMLImageElement()
81 m_imageLoader.updateFromElementIgnoringPreviousError(); in parseMappedAttribute()
102 if (renderer() && renderer()->isImage() && m_imageLoader.haveFiredBeforeLoadEvent()) { in attach()
107 renderImageResource->setCachedImage(m_imageLoader.image()); in attach()
111 if (!m_imageLoader.image() && !imageObj->cachedImage()) in attach()
127 if (!m_imageLoader.image()) in insertedIntoDocument()
128 m_imageLoader.updateFromElement(); in insertedIntoDocument()
DWMLImageElement.h53 WMLImageLoader m_imageLoader;
/external/webkit/Source/WebCore/svg/
DSVGImageElement.cpp53 , m_imageLoader(this) in DEFINE_ANIMATED_LENGTH()
98 m_imageLoader.updateFromElementIgnoringPreviousError(); in svgAttributeChanged()
195 return !externalResourcesRequiredBaseValue() || m_imageLoader.haveFiredLoadEvent(); in haveLoadedRequiredResources()
206 imageObj->imageResource()->setCachedImage(m_imageLoader.image()); in attach()
216 m_imageLoader.updateFromElement(); in insertedIntoDocument()
233 m_imageLoader.elementWillMoveToNewOwnerDocument(); in willMoveToNewOwnerDocument()
DSVGImageElement.h82 SVGImageLoader m_imageLoader;
/external/webkit/Source/WebCore/
DChangeLog-2011-02-1633957 m_imageLoader, m_fileList, m_deprecatedTypeNumber,
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