HomeSort by relevance Sort by last modified time
    Searched full:backingstore (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/webkit/Source/WebKit2/UIProcess/
BackingStore.cpp 27 #include "BackingStore.h"
40 PassOwnPtr<BackingStore> BackingStore::create(const IntSize& size, WebPageProxy* webPageProxy)
42 return adoptPtr(new BackingStore(size, webPageProxy));
45 BackingStore::BackingStore(const IntSize& size, WebPageProxy* webPageProxy)
52 BackingStore::~BackingStore()
56 void BackingStore::incorporateUpdate(const UpdateInfo& updateInfo)
BackingStore.h 49 class BackingStore {
50 WTF_MAKE_NONCOPYABLE(BackingStore);
53 static PassOwnPtr<BackingStore> create(const WebCore::IntSize&, WebPageProxy*);
54 ~BackingStore();
68 BackingStore(const WebCore::IntSize&, WebPageProxy*);
DrawingAreaProxyImpl.h 29 #include "BackingStore.h"
45 void paint(BackingStore::PlatformGraphicsContext, const WebCore::IntRect&, Region& unpaintedRegion);
103 OwnPtr<BackingStore> m_backingStore;
ChunkedUpdateDrawingAreaProxy.h 94 // BackingStore
97 // BackingStore
DrawingAreaProxyImpl.cpp 69 void DrawingAreaProxyImpl::paint(BackingStore::PlatformGraphicsContext context, const IntRect& rect, Region& unpaintedRegion)
244 m_backingStore = BackingStore::create(updateInfo.viewSize, m_webPageProxy);
  /external/webkit/Source/WebCore/storage/
IDBFactoryBackendImpl.cpp 61 void IDBFactoryBackendImpl::addIDBBackingStore(const String& uniqueIdentifier, IDBBackingStore* backingStore)
64 m_backingStoreMap.set(uniqueIdentifier, backingStore);
85 RefPtr<IDBBackingStore> backingStore;
88 backingStore = it2->second;
91 backingStore = IDBSQLiteBackingStore::open(securityOrigin.get(), dataDir, maximumSize, fileIdentifier, this);
94 backingStore = IDBLevelDBBackingStore::open(securityOrigin.get(), dataDir, maximumSize, fileIdentifier, this);
96 if (!backingStore) {
102 RefPtr<IDBDatabaseBackendImpl> databaseBackend = IDBDatabaseBackendImpl::create(name, backingStore.get(), m_transactionCoordinator.get(), this, uniqueIdentifier);
IDBIndexBackendImpl.h 43 static PassRefPtr<IDBIndexBackendImpl> create(IDBBackingStore* backingStore, int64_t databaseId, const IDBObjectStoreBackendImpl* objectStoreBackend, int64_t id, const String& name, const String& storeName, const String& keyPath, bool unique)
45 return adoptRef(new IDBIndexBackendImpl(backingStore, databaseId, objectStoreBackend, id, name, storeName, keyPath, unique));
47 static PassRefPtr<IDBIndexBackendImpl> create(IDBBackingStore* backingStore, int64_t databaseId, const IDBObjectStoreBackendImpl* objectStoreBackend, const String& name, const String& storeName, const String& keyPath, bool unique)
49 return adoptRef(new IDBIndexBackendImpl(backingStore, databaseId, objectStoreBackend, name, storeName, keyPath, unique));
IDBObjectStoreBackendImpl.h 45 static PassRefPtr<IDBObjectStoreBackendImpl> create(IDBBackingStore* backingStore, int64_t databaseId, int64_t id, const String& name, const String& keyPath, bool autoIncrement)
47 return adoptRef(new IDBObjectStoreBackendImpl(backingStore, databaseId, id, name, keyPath, autoIncrement));
49 static PassRefPtr<IDBObjectStoreBackendImpl> create(IDBBackingStore* backingStore, int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement)
51 return adoptRef(new IDBObjectStoreBackendImpl(backingStore, databaseId, name, keyPath, autoIncrement));
IDBIndexBackendImpl.cpp 43 IDBIndexBackendImpl::IDBIndexBackendImpl(IDBBackingStore* backingStore, int64_t databaseId, const IDBObjectStoreBackendImpl* objectStoreBackend, int64_t id, const String& name, const String& storeName, const String& keyPath, bool unique)
44 : m_backingStore(backingStore)
55 IDBIndexBackendImpl::IDBIndexBackendImpl(IDBBackingStore* backingStore, int64_t databaseId, const IDBObjectStoreBackendImpl* objectStoreBackend, const String& name, const String& storeName, const String& keyPath, bool unique)
56 : m_backingStore(backingStore)
IDBObjectStoreBackendImpl.cpp 53 IDBObjectStoreBackendImpl::IDBObjectStoreBackendImpl(IDBBackingStore* backingStore, int64_t databaseId, int64_t id, const String& name, const String& keyPath, bool autoIncrement)
54 : m_backingStore(backingStore)
65 IDBObjectStoreBackendImpl::IDBObjectStoreBackendImpl(IDBBackingStore* backingStore, int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement)
66 : m_backingStore(backingStore)
330 PopulateIndexCallback(IDBBackingStore& backingStore, const String& indexKeyPath, int64_t databaseId, int64_t objectStoreId, int64_t indexId)
331 : m_backingStore(backingStore)
361 static bool populateIndex(IDBBackingStore& backingStore, int64_t databaseId, int64_t objectStoreId, int64_t indexId, const String& indexKeyPath)
363 PopulateIndexCallback callback(backingStore, indexKeyPath, databaseId, objectStoreId, indexId);
364 if (!backingStore.forEachObjectStoreRecord(databaseId, objectStoreId, callback))
IDBDatabaseBackendImpl.cpp 64 IDBDatabaseBackendImpl::IDBDatabaseBackendImpl(const String& name, IDBBackingStore* backingStore, IDBTransactionCoordinator* coordinator, IDBFactoryBackendImpl* factory, const String& uniqueIdentifier)
65 : m_backingStore(backingStore)
87 PassRefPtr<IDBBackingStore> IDBDatabaseBackendImpl::backingStore() const
IDBDatabaseBackendImpl.h 53 PassRefPtr<IDBBackingStore> backingStore() const;
IDBSQLiteBackingStore.cpp 170 RefPtr<IDBSQLiteBackingStore> backingStore(adoptRef(new IDBSQLiteBackingStore(fileIdentifier, factory)));
182 if (!backingStore->m_db.open(path)) {
189 backingStore->m_db.setMaximumSize(maximumSize);
190 backingStore->m_db.turnOnIncrementalAutoVacuum();
192 if (!createTables(backingStore->m_db))
194 if (!migrateDatabase(backingStore->m_db))
197 return backingStore.release();
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
BackingStoreWin.cpp 27 #include "BackingStore.h"
64 void BackingStore::paint(HDC dc, const IntRect& rect)
78 void BackingStore::incorporateUpdate(ShareableBitmap* bitmap, const UpdateInfo& updateInfo)
100 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset)
  /external/webkit/Source/WebCore/platform/graphics/
Tile.h 47 static PassRefPtr<Tile> create(TiledBackingStore* backingStore, const Coordinate& tileCoordinate) { return adoptRef(new Tile(backingStore, tileCoordinate)); }
  /external/webkit/Source/WebKit2/UIProcess/mac/
BackingStoreMac.mm 27 #import "BackingStore.h"
39 void BackingStore::paint(PlatformGraphicsContext context, const IntRect& rect)
56 CGContextRef BackingStore::backingStoreContext()
96 void BackingStore::incorporateUpdate(ShareableBitmap* bitmap, const UpdateInfo& updateInfo)
116 void BackingStore::scroll(const IntRect& scrollRect, const IntSize& scrollOffset)
  /external/v8/src/
elements.cc 96 typedef FixedArrayBase BackingStore;
103 typedef Store BackingStore; \
403 typedef typename ElementsTraitsParam::BackingStore BackingStore;
410 BackingStore* backing_store) {
424 receiver, holder, key, BackingStore::cast(backing_store));
435 receiver, holder, key, BackingStore::cast(backing_store));
441 BackingStore* backing_store) {
450 array, length, BackingStore::cast(array->elements()));
455 BackingStore* backing_store)
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_tabs_module.h 16 class BackingStore;
164 virtual bool CaptureSnapshotFromBackingStore(BackingStore* backing_store);
  /external/webkit/Tools/EWebLauncher/
main.c 157 const char *backingStore;
164 static int browserCreate(const char *url, const char *theme, const char *userAgent, Eina_Rectangle geometry, const char *engine, const char *backingStore, unsigned char isFlattening, unsigned char isFullscreen, const char *databasePath);
590 app->theme, app->userAgent, geometry, app-> backingStore,
655 browserCreate(const char *url, const char *theme, const char *userAgent, Eina_Rectangle geometry, const char *engine, const char *backingStore, unsigned char isFlattening, unsigned char isFullscreen, const char *databasePath)
685 app->backingStore = backingStore;
696 if (backingStore && !strcasecmp(backingStore, "tiled")) {
825 char *backingStore = (char *)backingStores[1];
835 ECORE_GETOPT_VALUE_STR(backingStore),
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
TileQt.cpp 58 Tile::Tile(TiledBackingStore* backingStore, const Coordinate& tileCoordinate)
59 : m_backingStore(backingStore)
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
PageClientQt.cpp 371 WebCore::TiledBackingStore* backingStore = QWebFramePrivate::core(page->mainFrame())->tiledBackingStore();
372 if (!backingStore)
374 backingStore->setContentsScale(view->scale());
  /external/webkit/Source/WebCore/platform/
HostWindow.h 47 // Requests the host scroll backingstore by the specified delta, rect to scroll, and clip rect.
  /external/webkit/Source/WebKit/qt/Api/
qgraphicswebview.cpp 287 if (WebCore::TiledBackingStore* backingStore = QWebFramePrivate::core(page()->mainFrame())->tiledBackingStore()) {
289 backingStore->adjustVisibleRect();
910 WebCore::TiledBackingStore* backingStore = QWebFramePrivate::core(page()->mainFrame())->tiledBackingStore();
911 if (!backingStore)
913 return backingStore->contentsFrozen();
922 WebCore::TiledBackingStore* backingStore = QWebFramePrivate::core(page()->mainFrame())->tiledBackingStore();
923 if (!backingStore)
925 backingStore->setContentsFrozen(frozen);
  /external/chromium/chrome/browser/tab_contents/
thumbnail_generator.cc 76 BackingStore* backing_store,
188 BackingStore* backing_store = renderer->GetBackingStore(false);
255 BackingStore* backing_store = renderer->GetBackingStore(false);
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_win.h 28 class BackingStore;
159 virtual BackingStore* AllocBackingStore(const gfx::Size& size);

Completed in 1244 milliseconds

1 2 3