Lines Matching refs:image
62 CachedImage::CachedImage(Image* image)
64 , m_image(image)
119 static Image* brokenImage()
121 DEFINE_STATIC_LOCAL(RefPtr<Image>, brokenImage, (Image::loadPlatformResource("missingImage")));
125 static Image* nullImage()
131 Image* CachedImage::image() const
240 // Create the image if it doesn't yet exist.
250 if (m_response.mimeType() == "image/svg+xml") {
278 // Have the image update its data from its internal buffer.
280 // queried for info (like size or specific image frames).
298 // It would be nice to only redraw the decoded band of the image, but with the current design
336 // Image refs the data buffer so we should not make it purgeable while the image is alive.
337 // Invoking addClient() will reconstruct the image object.
345 void CachedImage::decodedSizeChanged(const Image* image, int delta)
347 if (image != m_image)
353 void CachedImage::didDraw(const Image* image)
355 if (image != m_image)
365 bool CachedImage::shouldPauseAnimation(const Image* image)
367 if (image != m_image)
379 void CachedImage::animationAdvanced(const Image* image)
381 if (image == m_image)
385 void CachedImage::changedInRect(const Image* image, const IntRect& rect)
387 if (image == m_image)