HomeSort by relevance Sort by last modified time
    Searched full:imagedecodingstore (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
ImageDecodingStoreTest.cpp 28 #include "core/platform/graphics/chromium/ImageDecodingStore.h"
44 ImageDecodingStore::initializeOnce();
52 ImageDecodingStore::shutdown();
62 // Decoder is never used by ImageDecodingStore.
100 const ScaledImageFragment* image = ImageDecodingStore::instance()->insertAndLockCache(
108 if (ImageDecodingStore::instance()->lockCache(m_generator.get(), size, index, &cachedImage))
115 ImageDecodingStore::instance()->unlockCache(m_generator.get(), cachedImage);
120 size_t memoryUsageInBytes = ImageDecodingStore::instance()->memoryUsageInBytes();
122 ImageDecodingStore::instance()->setCacheLimitInBytes(memoryUsageInBytes - 1);
124 ImageDecodingStore::instance()->setCacheLimitInBytes(0)
    [all...]
ImageFrameGeneratorTest.cpp 31 #include "core/platform/graphics/chromium/ImageDecodingStore.h"
69 ImageDecodingStore::initializeOnce();
80 ImageDecodingStore::shutdown();
140 const ScaledImageFragment* fullImage = ImageDecodingStore::instance()->insertAndLockCache(
143 ImageDecodingStore::instance()->unlockCache(m_generator.get(), fullImage);
149 ImageDecodingStore::instance()->unlockCache(m_generator.get(), tempImage);
155 const ScaledImageFragment* fullImage = ImageDecodingStore::instance()->insertAndLockCache(
158 ImageDecodingStore::instance()->unlockCache(m_generator.get(), fullImage);
165 ImageDecodingStore::instance()->unlockCache(m_generator.get(), scaledImage);
172 ImageDecodingStore::instance()->unlockCache(m_generator.get(), tempImage)
    [all...]
ImageDecodingStore.cpp 27 #include "core/platform/graphics/chromium/ImageDecodingStore.h"
38 static ImageDecodingStore* s_instance = 0;
40 static void setInstance(ImageDecodingStore* imageDecodingStore)
43 s_instance = imageDecodingStore;
48 ImageDecodingStore::ImageDecodingStore()
54 ImageDecodingStore::~ImageDecodingStore()
66 ImageDecodingStore* ImageDecodingStore::instance(
    [all...]
ImageFrameGenerator.cpp 33 #include "core/platform/graphics/chromium/ImageDecodingStore.h"
62 // ImageDecodingStore::removeCacheFromInstance(this);
64 if (ImageDecodingStore::instance())
65 ImageDecodingStore::instance()->removeCacheIndexedByGenerator(this);
110 if (ImageDecodingStore::instance()->lockCache(this, scaledSize, index, &cachedImage))
124 if (!fullSizeImage && !ImageDecodingStore::instance()->lockCache(this, m_fullSize, index, &fullSizeImage))
138 ImageDecodingStore::instance()->unlockCache(this, fullSizeImage);
139 return ImageDecodingStore::instance()->insertAndLockCache(this, scaledImage.release());
147 const bool resumeDecoding = ImageDecodingStore::instance()->lockDecoder(this, m_fullSize, &decoder);
157 // the decoder is owned by ImageDecodingStore
    [all...]
LazyDecodingPixelRef.cpp 31 #include "core/platform/graphics/chromium/ImageDecodingStore.h"
81 if (!ImageDecodingStore::instance()->lockCache(m_frameGenerator.get(), m_scaledSize, m_frameIndex, &m_lockedImageResource))
100 ImageDecodingStore::instance()->unlockCache(m_frameGenerator.get(), m_lockedImageResource);
114 return ImageDecodingStore::instance()->isCached(m_frameGenerator.get(), m_scaledSize, m_frameIndex);
ImageDecodingStore.h 50 // ImageDecodingStore is a class used to manage image cache objects. There are two
85 class ImageDecodingStore {
87 static PassOwnPtr<ImageDecodingStore> create() { return adoptPtr(new ImageDecodingStore); }
88 ~ImageDecodingStore();
90 static ImageDecodingStore* instance();
245 ImageDecodingStore();
DeferredImageDecoderTest.cpp 34 #include "core/platform/graphics/chromium/ImageDecodingStore.h"
75 ImageDecodingStore::initializeOnce();
92 ImageDecodingStore::shutdown();
DiscardablePixelRef.cpp 107 // ImageDecodingStore provides the synchronization for this.
  /external/chromium_org/third_party/WebKit/Source/web/
WebImageCache.cpp 34 #include "core/platform/graphics/chromium/ImageDecodingStore.h"
36 using WebCore::ImageDecodingStore;
42 ImageDecodingStore::instance()->setCacheLimitInBytes(size);
47 if (ImageDecodingStore::instance())
48 ImageDecodingStore::instance()->clear();
53 return ImageDecodingStore::instance()->memoryUsageInBytes();
58 return ImageDecodingStore::instance()->cacheEntries();
WebKit.cpp 48 #include "core/platform/graphics/chromium/ImageDecodingStore.h"
153 WebCore::ImageDecodingStore::initializeOnce();
194 WebCore::ImageDecodingStore::shutdown();
  /external/chromium_org/skia/ext/
lazy_pixel_ref.h 25 // Request the ImageDecodingStore to prepare image decoding for the
29 // Returns true if this pixel ref is already in the ImageDecodingStore's
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_platform.target.darwin-arm.mk 197 third_party/WebKit/Source/core/platform/graphics/chromium/ImageDecodingStore.cpp \
    [all...]
webcore_platform.target.darwin-mips.mk 197 third_party/WebKit/Source/core/platform/graphics/chromium/ImageDecodingStore.cpp \
    [all...]
webcore_platform.target.darwin-x86.mk 197 third_party/WebKit/Source/core/platform/graphics/chromium/ImageDecodingStore.cpp \
    [all...]
webcore_platform.target.linux-arm.mk 197 third_party/WebKit/Source/core/platform/graphics/chromium/ImageDecodingStore.cpp \
    [all...]
webcore_platform.target.linux-mips.mk 197 third_party/WebKit/Source/core/platform/graphics/chromium/ImageDecodingStore.cpp \
    [all...]
webcore_platform.target.linux-x86.mk 197 third_party/WebKit/Source/core/platform/graphics/chromium/ImageDecodingStore.cpp \
    [all...]
core.gypi     [all...]

Completed in 841 milliseconds