OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:colorprofile
(Results
1 - 9
of
9
) sorted by null
/external/webkit/Source/WebCore/platform/image-decoders/cg/
ImageDecoderCG.cpp
79
static CGColorSpaceRef createColorSpace(const
ColorProfile
&
colorProfile
)
81
if (
colorProfile
.isEmpty())
84
RetainPtr<CFDataRef> data(AdoptCF, CFDataCreate(kCFAllocatorDefault, reinterpret_cast<const UInt8*>(
colorProfile
.data()),
colorProfile
.size()));
/external/webkit/Source/WebCore/platform/image-decoders/jpeg/
JPEGImageDecoder.h
56
void setColorProfile(const
ColorProfile
&
colorProfile
) { m_colorProfile =
colorProfile
; }
JPEGImageDecoder.cpp
95
static
ColorProfile
readColorProfile(jpeg_decompress_struct* info)
102
return
ColorProfile
();
104
ColorProfile
colorProfile
;
105
colorProfile
.append(reinterpret_cast<char*>(profile), profileLength);
107
return
colorProfile
;
109
return
ColorProfile
();
/external/webkit/Source/WebCore/platform/image-decoders/qt/
ImageFrameQt.cpp
128
void ImageFrame::setColorProfile(const
ColorProfile
&
colorProfile
)
/external/webkit/Source/WebCore/platform/image-decoders/skia/
ImageDecoderSkia.cpp
120
void ImageFrame::setColorProfile(const
ColorProfile
&
colorProfile
)
/external/webkit/Source/WebCore/platform/image-decoders/png/
PNGImageDecoder.cpp
224
static
ColorProfile
readColorProfile(png_structp png, png_infop info)
232
ColorProfile
colorProfile
;
233
colorProfile
.append(profile, profileLength);
234
return
colorProfile
;
237
return
ColorProfile
();
/external/webkit/Source/WebCore/platform/image-decoders/
ImageDecoder.cpp
220
void ImageFrame::setColorProfile(const
ColorProfile
&
colorProfile
)
222
m_colorProfile =
colorProfile
;
ImageDecoder.h
51
typedef Vector<char>
ColorProfile
;
133
void setColorProfile(const
ColorProfile
&);
206
ColorProfile
m_colorProfile;
337
ColorProfile
m_colorProfile;
/external/webkit/Source/WebCore/dom/
DOMImplementation.cpp
139
// addString(svgFeatures, "
ColorProfile
"); // requires color-profile, bug 6037
Completed in 61 milliseconds