OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_hasColorProfile
(Results
1 - 8
of
8
) 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; }
80
bool
m_hasColorProfile
;
JPEGImageDecoder.cpp
687
,
m_hasColorProfile
(false)
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
PNGImageDecoder.h
47
virtual bool hasColorProfile() const OVERRIDE { return
m_hasColorProfile
; }
72
bool
m_hasColorProfile
;
PNGImageDecoder.cpp
225
,
m_hasColorProfile
(false)
362
m_hasColorProfile
= !!m_reader->colorTransform();
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
WEBPImageDecoder.h
46
virtual bool hasColorProfile() const OVERRIDE { return
m_hasColorProfile
; }
62
bool
m_hasColorProfile
;
WEBPImageDecoder.cpp
135
,
m_hasColorProfile
(false)
296
m_hasColorProfile
= true;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DeferredImageDecoder.h
97
bool
m_hasColorProfile
;
DeferredImageDecoder.cpp
52
,
m_hasColorProfile
(false)
133
return m_actualDecoder ? m_actualDecoder->hasColorProfile() :
m_hasColorProfile
;
211
m_hasColorProfile
= m_actualDecoder->hasColorProfile();
Completed in 182 milliseconds