Home
last modified time | relevance | path

Searched refs:m_backingStore (Results 1 – 20 of 20) sorted by relevance

/external/webkit/Source/WebCore/platform/image-decoders/cg/
DImageDecoderCG.cpp44 m_backingStore = other.m_backingStore; in copyReferenceToBitmapData()
45 m_bytes = getPtrAsPixelData(m_backingStore.get()); in copyReferenceToBitmapData()
56m_backingStore.adoptCF(CFDataCreateMutableCopy(kCFAllocatorDefault, 0, other.m_backingStore.get())… in copyBitmapData()
57 m_bytes = getPtrAsPixelData(m_backingStore.get()); in copyBitmapData()
65 ASSERT(!m_backingStore); in setSize()
70 m_backingStore.adoptCF(backingStoreRef); in setSize()
72 m_bytes = reinterpret_cast<PixelData*>(CFDataGetMutableBytePtr(m_backingStore.get())); in setSize()
97 …Ptr<CGDataProviderRef> dataProvider(AdoptCF, CGDataProviderCreateWithCFData(m_backingStore.get())); in asNewNativeImage()
/external/webkit/Source/WebKit2/UIProcess/
DDrawingAreaProxyImpl.cpp91 if (!m_backingStore || isInAcceleratedCompositingMode()) in paint()
95 if (!m_backingStore) { in paint()
102 m_backingStore->paint(context, rect); in paint()
103 unpaintedRegion.subtract(IntRect(IntPoint(), m_backingStore->size())); in paint()
143 if (!m_backingStore && m_layerTreeContext.isEmpty()) in visibilityDidChange()
201 ASSERT(!m_backingStore); in didUpdateBackingStoreState()
208 m_backingStore = nullptr; in didUpdateBackingStoreState()
243 if (!m_backingStore) in incorporateUpdate()
244 m_backingStore = BackingStore::create(updateInfo.viewSize, m_webPageProxy); in incorporateUpdate()
246 m_backingStore->incorporateUpdate(updateInfo); in incorporateUpdate()
[all …]
DDrawingAreaProxyImpl.h103 OwnPtr<BackingStore> m_backingStore; variable
/external/webkit/Source/WebCore/platform/graphics/qt/
DTileQt.cpp59 : m_backingStore(backingStore) in Tile()
61 , m_rect(m_backingStore->tileRectForCoordinate(tileCoordinate)) in Tile()
101 …m_backBuffer = new QPixmap(m_backingStore->m_tileSize.width(), m_backingStore->m_tileSize.height()… in updateBackBuffer()
102 m_backBuffer->fill(m_backingStore->m_client->tiledBackingStoreBackgroundColor()); in updateBackBuffer()
125 context.scale(FloatSize(m_backingStore->m_contentsScale, m_backingStore->m_contentsScale)); in updateBackBuffer()
126m_backingStore->m_client->tiledBackingStorePaint(&context, m_backingStore->mapToContents(rect)); in updateBackBuffer()
DGraphicsLayerQt.cpp273 } m_backingStore; member in WebCore::GraphicsLayerQtImpl
419 if (QPixmapCache::find(m_backingStore.key, &pixmap)) { in recache()
422 …QPixmapCache::remove(m_backingStore.key); // Remove the reference to the pixmap in the cache to av… in recache()
429 if (pixmap.isNull() || m_size != m_backingStore.size) { in recache()
452 … & QRegion(0, 0, m_backingStore.size.width(), m_backingStore.size.height())) - regionToUpdate; in recache()
512 m_backingStore.size = m_size; // Store the used size of the pixmap. in recache()
516 m_backingStore.key = QPixmapCache::insert(pixmap); in recache()
645 …if (!QPixmapCache::find(m_backingStore.key, &backingStore) || backingStore.size() != m_size.toSize… in paint()
647 … const QRectF bounds(0, 0, m_backingStore.size.width(), m_backingStore.size.height()); in paint()
/external/webkit/Source/WebCore/storage/
DIDBObjectStoreBackendImpl.cpp54 : m_backingStore(backingStore) in IDBObjectStoreBackendImpl()
66 : m_backingStore(backingStore) in IDBObjectStoreBackendImpl()
95 …String wireData = objectStore->m_backingStore->getObjectStoreRecord(objectStore->m_databaseId, obj… in getInternal()
232 …gStore::ObjectStoreRecordIdentifier> recordIdentifier = objectStore->m_backingStore->createInvalid… in putInternal()
233 …bool isExistingValue = objectStore->m_backingStore->keyExistsInObjectStore(objectStore->m_database… in putInternal()
242 …if (!objectStore->m_backingStore->putObjectStoreRecord(objectStore->m_databaseId, objectStore->id(… in putInternal()
254 …if (!objectStore->m_backingStore->deleteIndexDataForRecord(objectStore->m_databaseId, objectStore-… in putInternal()
261 …if (!objectStore->m_backingStore->putIndexDataForRecord(objectStore->m_databaseId, objectStore->id… in putInternal()
289 …gStore::ObjectStoreRecordIdentifier> recordIdentifier = objectStore->m_backingStore->createInvalid… in deleteInternal()
290 …if (!objectStore->m_backingStore->keyExistsInObjectStore(objectStore->m_databaseId, objectStore->i… in deleteInternal()
[all …]
DIDBDatabaseBackendImpl.cpp65 : m_backingStore(backingStore) in IDBDatabaseBackendImpl()
75 bool success = m_backingStore->extractIDBDatabaseMetaData(m_name, m_version, m_id); in IDBDatabaseBackendImpl()
77 if (!m_backingStore->setIDBDatabaseMetaData(m_name, m_version, m_id, m_id == InvalidId)) in IDBDatabaseBackendImpl()
89 return m_backingStore; in backingStore()
109 …ectStoreBackendImpl> objectStore = IDBObjectStoreBackendImpl::create(m_backingStore.get(), m_id, n… in createObjectStore()
128 …if (!database->m_backingStore->createObjectStore(database->id(), objectStore->name(), objectStore-… in createObjectStoreInternal()
161 database->m_backingStore->deleteObjectStore(database->id(), objectStore->id()); in deleteObjectStoreInternal()
197 …if (!database->m_backingStore->setIDBDatabaseMetaData(database->m_name, database->m_version, datab… in setVersionInternal()
246 m_backingStore->getObjectStores(m_id, ids, names, keyPaths, autoIncrementFlags); in loadObjectStores()
253 …m_objectStores.set(names[i], IDBObjectStoreBackendImpl::create(m_backingStore.get(), m_id, ids[i],… in loadObjectStores()
DIDBIndexBackendImpl.cpp44 : m_backingStore(backingStore) in IDBIndexBackendImpl()
56 : m_backingStore(backingStore) in IDBIndexBackendImpl()
79 …backingStoreCursor = index->m_backingStore->openIndexKeyCursor(index->m_databaseId, index->m_objec… in openCursorInternal()
82 …backingStoreCursor = index->m_backingStore->openIndexCursor(index->m_databaseId, index->m_objectSt… in openCursorInternal()
127 …String value = index->m_backingStore->getObjectViaIndex(index->m_databaseId, index->m_objectStoreB… in getInternal()
134 …RefPtr<IDBKey> keyResult = index->m_backingStore->getPrimaryKeyViaIndex(index->m_databaseId, index… in getInternal()
166 return !m_backingStore->keyExistsInIndex(m_databaseId, m_objectStoreBackend->id(), m_id, *key); in addingKeyAllowed()
DIDBIndexBackendImpl.h83 RefPtr<IDBBackingStore> m_backingStore; variable
DIDBDatabaseBackendImpl.h86 RefPtr<IDBBackingStore> m_backingStore; variable
DIDBObjectStoreBackendImpl.h101 RefPtr<IDBBackingStore> m_backingStore; variable
/external/webkit/Source/WebCore/platform/image-decoders/
DImageDecoder.cpp160 m_backingStore.clear(); in clearPixelData()
188 m_backingStore = other.m_backingStore; in copyBitmapData()
189 m_bytes = m_backingStore.data(); in copyBitmapData()
199 m_backingStore.resize(newWidth * newHeight); in setSize()
200 m_bytes = m_backingStore.data(); in setSize()
DImageDecoder.h202 NativeBackingStore m_backingStore; variable
/external/webkit/Source/WebKit2/WebProcess/Plugins/
DPluginProxy.cpp127 if (!needsBackingStore() || !m_backingStore) in paint()
134 OwnPtr<WebCore::GraphicsContext> graphicsContext = m_backingStore->createGraphicsContext(); in paint()
145 m_backingStore->paint(*graphicsContext, dirtyRect.location(), dirtyRectInPluginCoordinates); in paint()
183 if (!m_backingStore) { in geometryDidChange()
184 m_backingStore = ShareableBitmap::create(frameRect.size(), ShareableBitmap::SupportsAlpha); in geometryDidChange()
186 } else if (frameRect.size() != m_backingStore->size()) { in geometryDidChange()
188 if (!m_backingStore->resize(frameRect.size())) in geometryDidChange()
468 if (m_backingStore) { in update()
470 OwnPtr<GraphicsContext> graphicsContext = m_backingStore->createGraphicsContext(); in update()
DPluginProxy.h133 RefPtr<ShareableBitmap> m_backingStore; variable
/external/webkit/Source/WebCore/platform/graphics/
DTile.h65 TiledBackingStore* m_backingStore; variable
/external/webkit/Source/WebKit2/PluginProcess/
DPluginControllerProxy.cpp141 if (!m_backingStore) in paint()
150 OwnPtr<GraphicsContext> graphicsContext = m_backingStore->createGraphicsContext(); in paint()
376 m_backingStore = ShareableBitmap::create(backingStoreHandle); in geometryDidChange()
DPluginControllerProxy.h185 RefPtr<ShareableBitmap> m_backingStore; variable
/external/webkit/Source/WebCore/platform/graphics/wince/
DImageWinCE.cpp46 return SharedBitmap::create(m_backingStore, m_size, hasAlpha()); in asNewNativeImage()
/external/webkit/Source/WebKit2/
DChangeLog-2011-02-161482 (WebKit::DrawingAreaProxyImpl::paint): Null-check m_backingStore after waiting for
1483 DidSetSize, as m_backingStore can go away when we receive that message. This is the bug fix.