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

/external/chromium_org/third_party/WebKit/Source/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.cpp95 void BMPImageDecoder::decode(bool onlySize) argument
102 if (!decodeHelper(onlySize) && isAllDataReceived())
110 bool BMPImageDecoder::decodeHelper(bool onlySize) argument
124 return m_reader->decodeBMP(onlySize);
H A DBMPImageReader.h76 // Does the actual decoding. If |onlySize| is true, decoding only
79 bool decodeBMP(bool onlySize);
H A DBMPImageReader.cpp89 bool BMPImageReader::decodeBMP(bool onlySize) argument
100 if (onlySize)
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
H A DPNGImageDecoder.h65 // Decodes the image. If |onlySize| is true, stops decoding after
68 void decode(bool onlySize);
H A DPNGImageDecoder.cpp532 void PNGImageDecoder::decode(bool onlySize) argument
542 if (!m_reader->decode(*m_data, onlySize) && isAllDataReceived())
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
H A DJPEGImageDecoder.h72 // Decodes the image. If |onlySize| is true, stops decoding after
75 void decode(bool onlySize);
H A DJPEGImageDecoder.cpp390 bool decode(const SharedBuffer& data, bool onlySize) argument
486 if (onlySize) {
993 void JPEGImageDecoder::decode(bool onlySize) argument
1004 if (!m_reader->decode(*m_data, onlySize) && isAllDataReceived())
1008 else if ((!m_frameBufferCache.isEmpty() && (m_frameBufferCache[0].status() == ImageFrame::FrameComplete)) || (hasImagePlanes() && !onlySize))
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
H A DWEBPImageDecoder.h56 bool decode(const uint8_t* dataBytes, size_t dataSize, bool onlySize, size_t frameIndex);
H A DWEBPImageDecoder.cpp539 bool WEBPImageDecoder::decode(const uint8_t* dataBytes, size_t dataSize, bool onlySize, size_t frameIndex)
560 if (onlySize)
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/
H A DICOImageDecoder.h97 // Decodes the entry at |index|. If |onlySize| is true, stops decoding
100 void decode(size_t index, bool onlySize);
H A DICOImageDecoder.cpp178 void ICOImageDecoder::decode(size_t index, bool onlySize) argument
185 if ((!decodeDirectory() || (!onlySize && !decodeAtIndex(index))) && isAllDataReceived())

Completed in 99 milliseconds