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

  /external/webkit/Source/WebCore/platform/image-decoders/cg/
ImageDecoderCG.cpp 44 m_backingStore = other.m_backingStore;
45 m_bytes = getPtrAsPixelData(m_backingStore.get());
56 m_backingStore.adoptCF(CFDataCreateMutableCopy(kCFAllocatorDefault, 0, other.m_backingStore.get()));
57 m_bytes = getPtrAsPixelData(m_backingStore.get());
65 ASSERT(!m_backingStore);
70 m_backingStore.adoptCF(backingStoreRef);
72 m_bytes = reinterpret_cast<PixelData*>(CFDataGetMutableBytePtr(m_backingStore.get()));
97 RetainPtr<CGDataProviderRef> dataProvider(AdoptCF, CGDataProviderCreateWithCFData(m_backingStore.get()))
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
TileQt.cpp 59 : m_backingStore(backingStore)
61 , m_rect(m_backingStore->tileRectForCoordinate(tileCoordinate))
101 m_backBuffer = new QPixmap(m_backingStore->m_tileSize.width(), m_backingStore->m_tileSize.height());
102 m_backBuffer->fill(m_backingStore->m_client->tiledBackingStoreBackgroundColor());
125 context.scale(FloatSize(m_backingStore->m_contentsScale, m_backingStore->m_contentsScale));
126 m_backingStore->m_client->tiledBackingStorePaint(&context, m_backingStore->mapToContents(rect));
GraphicsLayerQt.cpp 273 } m_backingStore;
419 if (QPixmapCache::find(m_backingStore.key, &pixmap)) {
422 QPixmapCache::remove(m_backingStore.key); // Remove the reference to the pixmap in the cache to avoid a detach.
429 if (pixmap.isNull() || m_size != m_backingStore.size) {
452 & QRegion(0, 0, m_backingStore.size.width(), m_backingStore.size.height())) - regionToUpdate;
512 m_backingStore.size = m_size; // Store the used size of the pixmap.
516 m_backingStore.key = QPixmapCache::insert(pixmap);
645 if (!QPixmapCache::find(m_backingStore.key, &backingStore) || backingStore.size() != m_size.toSize())
647 const QRectF bounds(0, 0, m_backingStore.size.width(), m_backingStore.size.height())
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
DrawingAreaProxyImpl.cpp 91 if (!m_backingStore || isInAcceleratedCompositingMode())
95 if (!m_backingStore) {
102 m_backingStore->paint(context, rect);
103 unpaintedRegion.subtract(IntRect(IntPoint(), m_backingStore->size()));
143 if (!m_backingStore && m_layerTreeContext.isEmpty())
201 ASSERT(!m_backingStore);
208 m_backingStore = nullptr;
243 if (!m_backingStore)
244 m_backingStore = BackingStore::create(updateInfo.viewSize, m_webPageProxy);
246 m_backingStore->incorporateUpdate(updateInfo)
    [all...]
DrawingAreaProxyImpl.h 103 OwnPtr<BackingStore> m_backingStore;
  /external/webkit/Source/WebCore/storage/
IDBObjectStoreBackendImpl.cpp 54 : m_backingStore(backingStore)
66 : m_backingStore(backingStore)
95 String wireData = objectStore->m_backingStore->getObjectStoreRecord(objectStore->m_databaseId, objectStore->id(), *key);
232 RefPtr<IDBBackingStore::ObjectStoreRecordIdentifier> recordIdentifier = objectStore->m_backingStore->createInvalidRecordIdentifier();
233 bool isExistingValue = objectStore->m_backingStore->keyExistsInObjectStore(objectStore->m_databaseId, objectStore->id(), *key, recordIdentifier.get());
242 if (!objectStore->m_backingStore->putObjectStoreRecord(objectStore->m_databaseId, objectStore->id(), *key, value->toWireString(), recordIdentifier.get())) {
254 if (!objectStore->m_backingStore->deleteIndexDataForRecord(objectStore->m_databaseId, objectStore->id(), it->second->id(), recordIdentifier.get())) {
261 if (!objectStore->m_backingStore->putIndexDataForRecord(objectStore->m_databaseId, objectStore->id(), it->second->id(), *indexKeys[i], recordIdentifier.get())) {
289 RefPtr<IDBBackingStore::ObjectStoreRecordIdentifier> recordIdentifier = objectStore->m_backingStore->createInvalidRecordIdentifier();
290 if (!objectStore->m_backingStore->keyExistsInObjectStore(objectStore->m_databaseId, objectStore->id(), *key, recordIdentifier.get() (…)
    [all...]
IDBDatabaseBackendImpl.cpp 65 : m_backingStore(backingStore)
75 bool success = m_backingStore->extractIDBDatabaseMetaData(m_name, m_version, m_id);
77 if (!m_backingStore->setIDBDatabaseMetaData(m_name, m_version, m_id, m_id == InvalidId))
89 return m_backingStore;
109 RefPtr<IDBObjectStoreBackendImpl> objectStore = IDBObjectStoreBackendImpl::create(m_backingStore.get(), m_id, name, keyPath, autoIncrement);
128 if (!database->m_backingStore->createObjectStore(database->id(), objectStore->name(), objectStore->keyPath(), objectStore->autoIncrement(), objectStoreId)) {
161 database->m_backingStore->deleteObjectStore(database->id(), objectStore->id());
197 if (!database->m_backingStore->setIDBDatabaseMetaData(database->m_name, database->m_version, databaseId, databaseId == InvalidId)) {
246 m_backingStore->getObjectStores(m_id, ids, names, keyPaths, autoIncrementFlags);
253 m_objectStores.set(names[i], IDBObjectStoreBackendImpl::create(m_backingStore.get(), m_id, ids[i], names[i], keyPaths[i], autoIncrementFlags[i]))
    [all...]
IDBIndexBackendImpl.cpp 44 : m_backingStore(backingStore)
56 : m_backingStore(backingStore)
79 backingStoreCursor = index->m_backingStore->openIndexKeyCursor(index->m_databaseId, index->m_objectStoreBackend->id(), index->id(), range.get(), direction);
82 backingStoreCursor = index->m_backingStore->openIndexCursor(index->m_databaseId, index->m_objectStoreBackend->id(), index->id(), range.get(), direction);
127 String value = index->m_backingStore->getObjectViaIndex(index->m_databaseId, index->m_objectStoreBackend->id(), index->id(), *key);
134 RefPtr<IDBKey> keyResult = index->m_backingStore->getPrimaryKeyViaIndex(index->m_databaseId, index->m_objectStoreBackend->id(), index->id(), *key);
166 return !m_backingStore->keyExistsInIndex(m_databaseId, m_objectStoreBackend->id(), m_id, *key);
IDBDatabaseBackendImpl.h 86 RefPtr<IDBBackingStore> m_backingStore;
IDBIndexBackendImpl.h 83 RefPtr<IDBBackingStore> m_backingStore;
IDBObjectStoreBackendImpl.h 101 RefPtr<IDBBackingStore> m_backingStore;
  /external/webkit/Source/WebCore/platform/graphics/
Tile.h 65 TiledBackingStore* m_backingStore;
  /external/webkit/Source/WebCore/platform/image-decoders/
ImageDecoder.cpp 160 m_backingStore.clear();
188 m_backingStore = other.m_backingStore;
189 m_bytes = m_backingStore.data();
199 m_backingStore.resize(newWidth * newHeight);
200 m_bytes = m_backingStore.data();
ImageDecoder.h 202 NativeBackingStore m_backingStore;
203 PixelData* m_bytes; // The memory is backed by m_backingStore.
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProxy.cpp 127 if (!needsBackingStore() || !m_backingStore)
134 OwnPtr<WebCore::GraphicsContext> graphicsContext = m_backingStore->createGraphicsContext();
145 m_backingStore->paint(*graphicsContext, dirtyRect.location(), dirtyRectInPluginCoordinates);
183 if (!m_backingStore) {
184 m_backingStore = ShareableBitmap::create(frameRect.size(), ShareableBitmap::SupportsAlpha);
186 } else if (frameRect.size() != m_backingStore->size()) {
188 if (!m_backingStore->resize(frameRect.size()))
468 if (m_backingStore) {
470 OwnPtr<GraphicsContext> graphicsContext = m_backingStore->createGraphicsContext();
PluginProxy.h 133 RefPtr<ShareableBitmap> m_backingStore;
  /external/webkit/Source/WebKit2/PluginProcess/
PluginControllerProxy.cpp 141 if (!m_backingStore)
150 OwnPtr<GraphicsContext> graphicsContext = m_backingStore->createGraphicsContext();
376 m_backingStore = ShareableBitmap::create(backingStoreHandle);
PluginControllerProxy.h 185 RefPtr<ShareableBitmap> m_backingStore;
  /external/webkit/Source/WebCore/platform/graphics/wince/
ImageWinCE.cpp 46 return SharedBitmap::create(m_backingStore, m_size, hasAlpha());

Completed in 295 milliseconds