Searched refs:onlySize (Results 1 - 12 of 12) sorted by relevance

/external/webkit/Source/WebCore/platform/image-decoders/bmp/
H A DBMPImageDecoder.h60 // Decodes the image. If |onlySize| is true, stops decoding after
63 void decode(bool onlySize);
65 // Decodes the image. If |onlySize| is true, stops decoding after
67 bool decodeHelper(bool onlySize);
H A DBMPImageDecoder.cpp90 void BMPImageDecoder::decode(bool onlySize) argument
97 if (!decodeHelper(onlySize) && isAllDataReceived())
105 bool BMPImageDecoder::decodeHelper(bool onlySize) argument
119 return m_reader->decodeBMP(onlySize);
H A DBMPImageReader.h74 // Does the actual decoding. If |onlySize| is true, decoding only
77 bool decodeBMP(bool onlySize);
H A DBMPImageReader.cpp56 bool BMPImageReader::decodeBMP(bool onlySize) argument
67 if (onlySize)
/external/webkit/Source/WebCore/platform/image-decoders/webp/
H A DWEBPImageDecoder.h51 bool decode(bool onlySize);
H A DWEBPImageDecoder.cpp75 bool WEBPImageDecoder::decode(bool onlySize) argument
95 if (onlySize)
/external/webkit/Source/WebCore/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.h59 // Decodes the image. If |onlySize| is true, stops decoding after
62 void decode(bool onlySize);
H A DJPEGImageDecoder.cpp182 bool decode(const SharedBuffer& data, bool onlySize) argument
184 m_decodingSizeOnly = onlySize;
525 void JPEGImageDecoder::decode(bool onlySize) argument
535 if (!m_reader->decode(*m_data, onlySize) && isAllDataReceived())
/external/webkit/Source/WebCore/platform/image-decoders/png/
H A DPNGImageDecoder.h63 // Decodes the image. If |onlySize| is true, stops decoding after
66 void decode(bool onlySize);
H A DPNGImageDecoder.cpp421 void PNGImageDecoder::decode(bool onlySize)
431 if (!m_reader->decode(*m_data, onlySize) && isAllDataReceived())
/external/webkit/Source/WebCore/platform/image-decoders/ico/
H A DICOImageDecoder.h90 // Decodes the entry at |index|. If |onlySize| is true, stops decoding
93 void decode(size_t index, bool onlySize);
H A DICOImageDecoder.cpp153 void ICOImageDecoder::decode(size_t index, bool onlySize) argument
160 if ((!decodeDirectory() || (!onlySize && !decodeAtIndex(index))) && isAllDataReceived())

Completed in 202 milliseconds