OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImageSource
(Results
1 - 25
of
35
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
ImageSource.cpp
29
#include "platform/graphics/
ImageSource
.h"
38
ImageSource
::
ImageSource
(
ImageSource
::AlphaOption alphaOption,
ImageSource
::GammaAndColorProfileOption gammaAndColorProfileOption)
44
ImageSource
::~
ImageSource
()
48
size_t
ImageSource
::clearCacheExceptFrame(size_t clearExceptFrame)
53
bool
ImageSource
::initialized() const
58
void
ImageSource
::setData(SharedBuffer* data, bool allDataReceived
[
all
...]
ImageSource.h
63
class PLATFORM_EXPORT
ImageSource
{
64
WTF_MAKE_NONCOPYABLE(
ImageSource
);
76
ImageSource
(AlphaOption alphaOption = AlphaPremultiplied, GammaAndColorProfileOption gammaAndColorProfileOption = GammaAndColorProfileApplied);
77
~
ImageSource
();
79
// Tells the
ImageSource
that the Image no longer cares about decoded frame
83
// In response, the
ImageSource
should delete cached decoded data for other
DeferredImageDecoder.h
33
#include "platform/graphics/
ImageSource
.h"
48
static PassOwnPtr<DeferredImageDecoder> create(const SharedBuffer& data,
ImageSource
::AlphaOption,
ImageSource
::GammaAndColorProfileOption);
BitmapImage.h
36
#include "platform/graphics/
ImageSource
.h"
159
ImageSource
m_source;
DeferredImageDecoder.cpp
62
PassOwnPtr<DeferredImageDecoder> DeferredImageDecoder::create(const SharedBuffer& data,
ImageSource
::AlphaOption alphaOption,
ImageSource
::GammaAndColorProfileOption gammaAndColorOption)
ImageFrameGenerator.cpp
241
*decoder = ImageDecoder::create(*data,
ImageSource
::AlphaPremultiplied,
ImageSource
::GammaAndColorProfileApplied).leakPtr();
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
BMPImageDecoder.h
42
BMPImageDecoder(
ImageSource
::AlphaOption,
ImageSource
::GammaAndColorProfileOption, size_t maxDecodedBytes);
BMPImageDecoder.cpp
44
BMPImageDecoder::BMPImageDecoder(
ImageSource
::AlphaOption alphaOption,
45
ImageSource
::GammaAndColorProfileOption gammaAndColorProfileOption,
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
JPEGImageDecoder.h
43
JPEGImageDecoder(
ImageSource
::AlphaOption,
ImageSource
::GammaAndColorProfileOption, size_t maxDecodedBytes);
JPEGImageDecoder.cpp
594
JPEGImageDecoder::JPEGImageDecoder(
ImageSource
::AlphaOption alphaOption,
595
ImageSource
::GammaAndColorProfileOption gammaAndColorProfileOption,
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/
PNGImageDecoder.h
41
PNGImageDecoder(
ImageSource
::AlphaOption,
ImageSource
::GammaAndColorProfileOption, size_t maxDecodedBytes);
PNGImageDecoder.cpp
217
PNGImageDecoder::PNGImageDecoder(
ImageSource
::AlphaOption alphaOption,
218
ImageSource
::GammaAndColorProfileOption gammaAndColorProfileOption,
/external/chromium_org/third_party/WebKit/Source/web/
WebImageDecoder.cpp
60
m_private = new BMPImageDecoder(
ImageSource
::AlphaPremultiplied,
ImageSource
::GammaAndColorProfileApplied, maxDecodedBytes);
63
m_private = new ICOImageDecoder(
ImageSource
::AlphaPremultiplied,
ImageSource
::GammaAndColorProfileApplied, maxDecodedBytes);
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/
ImageDecoder.h
34
#include "platform/graphics/
ImageSource
.h"
61
ImageDecoder(
ImageSource
::AlphaOption alphaOption,
ImageSource
::GammaAndColorProfileOption gammaAndColorProfileOption, size_t maxDecodedBytes)
62
: m_premultiplyAlpha(alphaOption ==
ImageSource
::AlphaPremultiplied)
63
, m_ignoreGammaAndColorProfile(gammaAndColorProfileOption ==
ImageSource
::GammaAndColorProfileIgnored)
75
static PassOwnPtr<ImageDecoder> create(const SharedBuffer& data,
ImageSource
::AlphaOption,
ImageSource
::GammaAndColorProfileOption);
78
static PassOwnPtr<ImageDecoder> create(const SharedBuffer& data,
ImageSource
::AlphaOption,
ImageSource
::GammaAndColorProfileOption, size_t maxDecodedSize);
ImageDecoder.cpp
84
PassOwnPtr<ImageDecoder> ImageDecoder::create(const SharedBuffer& data,
ImageSource
::AlphaOption alphaOption,
ImageSource
::GammaAndColorProfileOption gammaAndColorProfileOption)
ImageDecoderTest.cpp
46
: ImageDecoder(
ImageSource
::AlphaNotPremultiplied,
ImageSource
::GammaAndColorProfileApplied, noDecodedImageByteLimit)
/external/chromium_org/third_party/WebKit/Source/platform/exported/
WebImageSkia.cpp
54
OwnPtr<ImageDecoder> decoder(ImageDecoder::create(*buffer.get(),
ImageSource
::AlphaPremultiplied,
ImageSource
::GammaAndColorProfileIgnored));
102
OwnPtr<ImageDecoder> decoder(ImageDecoder::create(*buffer.get(),
ImageSource
::AlphaPremultiplied,
ImageSource
::GammaAndColorProfileIgnored));
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoder.h
43
GIFImageDecoder(
ImageSource
::AlphaOption,
ImageSource
::GammaAndColorProfileOption, size_t maxDecodedBytes);
GIFImageDecoder.cpp
37
GIFImageDecoder::GIFImageDecoder(
ImageSource
::AlphaOption alphaOption,
38
ImageSource
::GammaAndColorProfileOption gammaAndColorProfileOption,
83
// There are some additional wrinkles here. First,
ImageSource
::clear()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ico/
ICOImageDecoder.h
43
ICOImageDecoder(
ImageSource
::AlphaOption,
ImageSource
::GammaAndColorProfileOption, size_t maxDecodedBytes);
ICOImageDecoder.cpp
48
ICOImageDecoder::ICOImageDecoder(
ImageSource
::AlphaOption alphaOption,
49
ImageSource
::GammaAndColorProfileOption gammaAndColorProfileOption,
231
new PNGImageDecoder(m_premultiplyAlpha ?
ImageSource
::AlphaPremultiplied :
ImageSource
::AlphaNotPremultiplied,
232
m_ignoreGammaAndColorProfile ?
ImageSource
::GammaAndColorProfileIgnored :
ImageSource
::GammaAndColorProfileApplied, m_maxDecodedBytes));
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
WEBPImageDecoder.h
41
WEBPImageDecoder(
ImageSource
::AlphaOption,
ImageSource
::GammaAndColorProfileOption, size_t maxDecodedBytes);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
MockImageDecoder.h
55
: ImageDecoder(
ImageSource
::AlphaPremultiplied,
ImageSource
::GammaAndColorProfileApplied, noDecodedImageByteLimit)
/external/chromium_org/third_party/WebKit/Source/web/tests/
JPEGImageDecoderTest.cpp
62
return adoptPtr(new JPEGImageDecoder(
ImageSource
::AlphaNotPremultiplied,
ImageSource
::GammaAndColorProfileApplied, maxDecodedBytes));
/external/chromium_org/third_party/WebKit/Source/modules/imagebitmap/
ImageBitmapFactories.cpp
47
#include "platform/graphics/
ImageSource
.h"
329
OwnPtr<
ImageSource
> source = adoptPtr(new
ImageSource
());
Completed in 886 milliseconds
1
2