Searched refs:isSizeAvailable (Results 1 - 25 of 25) sorted by relevance

/external/webkit/Source/WebCore/platform/image-decoders/webp/
H A DWEBPImageDecoder.h46 virtual bool isSizeAvailable();
H A DWEBPImageDecoder.cpp50 bool WEBPImageDecoder::isSizeAvailable() function in class:WebCore::WEBPImageDecoder
52 if (!ImageDecoder::isSizeAvailable())
55 return ImageDecoder::isSizeAvailable();
93 if (!ImageDecoder::isSizeAvailable() && !setSize(width, height))
/external/webkit/Source/WebCore/platform/image-decoders/bmp/
H A DBMPImageDecoder.cpp60 bool BMPImageDecoder::isSizeAvailable() function in class:WebCore::BMPImageDecoder
62 if (!ImageDecoder::isSizeAvailable())
65 return ImageDecoder::isSizeAvailable();
H A DBMPImageDecoder.h47 virtual bool isSizeAvailable();
/external/webkit/Source/WebCore/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.h45 virtual bool isSizeAvailable();
H A DJPEGImageDecoder.cpp417 bool JPEGImageDecoder::isSizeAvailable() function in class:WebCore::JPEGImageDecoder
419 if (!ImageDecoder::isSizeAvailable())
422 return ImageDecoder::isSizeAvailable();
/external/webkit/Source/WebKit/chromium/src/
H A DWebImageDecoder.cpp79 bool WebImageDecoder::isSizeAvailable() const function in class:WebKit::WebImageDecoder
82 return m_private->isSizeAvailable();
H A DWebImageSkia.cpp53 if (!source.isSizeAvailable())
H A DWebImageCG.cpp54 if (!source.isSizeAvailable())
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DImageDecoderQt.h48 virtual bool isSizeAvailable();
H A DImageDecoderQt.cpp89 bool ImageDecoderQt::isSizeAvailable() function in class:WebCore::ImageDecoderQt
91 if (!ImageDecoder::isSizeAvailable() && m_reader)
94 return ImageDecoder::isSizeAvailable();
/external/webkit/Source/WebCore/platform/image-decoders/png/
H A DPNGImageDecoder.h44 virtual bool isSizeAvailable();
H A DPNGImageDecoder.cpp142 // We explicitly specify the superclass isSizeAvailable() because we
145 if (sizeOnly ? decoder->ImageDecoder::isSizeAvailable() : decoder->isComplete())
183 bool PNGImageDecoder::isSizeAvailable() function in class:WebCore::PNGImageDecoder
185 if (!ImageDecoder::isSizeAvailable())
188 return ImageDecoder::isSizeAvailable();
/external/webkit/Source/WebKit/chromium/public/
H A DWebImageDecoder.h67 WEBKIT_API bool isSizeAvailable() const;
/external/webkit/Source/WebCore/platform/graphics/
H A DImageSource.cpp98 bool ImageSource::isSizeAvailable() function in class:WebCore::ImageSource
100 return m_decoder && m_decoder->isSizeAvailable();
H A DBitmapImage.cpp213 return isSizeAvailable();
231 bool BitmapImage::isSizeAvailable() function in class:WebCore::BitmapImage
236 m_sizeAvailable = m_source.isSizeAvailable();
H A DImageSource.h186 bool isSizeAvailable();
H A DBitmapImage.h224 bool isSizeAvailable();
/external/webkit/Source/WebCore/platform/image-decoders/gif/
H A DGIFImageDecoder.h47 virtual bool isSizeAvailable();
H A DGIFImageDecoder.cpp56 bool GIFImageDecoder::isSizeAvailable() function in class:WebCore::GIFImageDecoder
58 if (!ImageDecoder::isSizeAvailable())
61 return ImageDecoder::isSizeAvailable();
66 if (ImageDecoder::isSizeAvailable() && size() == IntSize(width, height))
/external/webkit/Source/WebCore/platform/image-decoders/ico/
H A DICOImageDecoder.cpp73 bool ICOImageDecoder::isSizeAvailable() function in class:WebCore::ICOImageDecoder
75 if (!ImageDecoder::isSizeAvailable())
78 return ImageDecoder::isSizeAvailable();
212 if (m_pngDecoders[index]->isSizeAvailable() && (m_pngDecoders[index]->size() != dirEntry.m_size))
H A DICOImageDecoder.h49 virtual bool isSizeAvailable();
/external/webkit/Source/WebCore/platform/graphics/android/
H A DImageSourceAndroid.cpp277 bool ImageSource::isSizeAvailable() function in class:WebCore::ImageSource
282 && m_decoder.m_gifDecoder->isSizeAvailable()) ||
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DImageSourceCG.cpp168 bool ImageSource::isSizeAvailable() function in class:WebCore::ImageSource
/external/webkit/Source/WebCore/platform/image-decoders/
H A DImageDecoder.h258 virtual bool isSizeAvailable()

Completed in 4490 milliseconds