HomeSort by relevance Sort by last modified time
    Searched refs:hasColorProfile (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
JPEGImageDecoder.h 49 virtual bool hasColorProfile() const OVERRIDE { return m_hasColorProfile; }
68 void setHasColorProfile(bool hasColorProfile) { m_hasColorProfile = hasColorProfile; }
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
PNGImageDecoder.h 47 virtual bool hasColorProfile() const OVERRIDE { return m_hasColorProfile; }
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageSource.h 105 bool hasColorProfile() const;
BitmapImageTest.cpp 195 EXPECT_TRUE(m_image->hasColorProfile());
203 EXPECT_FALSE(m_image->hasColorProfile());
211 EXPECT_TRUE(m_image->hasColorProfile());
219 EXPECT_FALSE(m_image->hasColorProfile());
227 EXPECT_TRUE(m_image->hasColorProfile());
235 EXPECT_FALSE(m_image->hasColorProfile());
ImageSource.cpp 82 bool ImageSource::hasColorProfile() const
84 return m_decoder && m_decoder->hasColorProfile();
DeferredImageDecoder.h 65 bool hasColorProfile() const;
DeferredImageDecoder.cpp 131 bool DeferredImageDecoder::hasColorProfile() const
133 return m_actualDecoder ? m_actualDecoder->hasColorProfile() : m_hasColorProfile;
211 m_hasColorProfile = m_actualDecoder->hasColorProfile();
BitmapImage.h 70 bool hasColorProfile() const;
BitmapImage.cpp 251 bool BitmapImage::hasColorProfile() const
253 return m_source.hasColorProfile();
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
WEBPImageDecoder.h 46 virtual bool hasColorProfile() const OVERRIDE { return m_hasColorProfile; }
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageDecoder.h 177 virtual bool hasColorProfile() const { return false; }

Completed in 297 milliseconds