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

  /external/webkit/Source/WebKit/chromium/src/
IDBFactoryBackendProxy.cpp 64 void IDBFactoryBackendProxy::open(const String& name, PassRefPtr<IDBCallbacks> callbacks, PassRefPtr<SecurityOrigin> origin, Frame* frame, const String& dataDir, int64_t maximumSize, BackingStoreType backingStoreType)
67 m_webIDBFactory->open(name, new WebIDBCallbacksImpl(callbacks), origin, webFrame, dataDir, maximumSize, static_cast<WebIDBFactory::BackingStoreType>(backingStoreType));
WebIDBFactoryImpl.cpp 61 void WebIDBFactoryImpl::open(const WebString& name, WebIDBCallbacks* callbacks, const WebSecurityOrigin& origin, WebFrame*, const WebString& dataDir, unsigned long long maximumSize, BackingStoreType backingStoreType)
63 m_idbFactoryBackend->open(name, IDBCallbacksProxy::create(callbacks), origin, 0, dataDir, maximumSize, static_cast<IDBFactoryBackendInterface::BackingStoreType>(backingStoreType));
  /external/webkit/Tools/MiniBrowser/qt/
BrowserView.cpp 33 BrowserView::BrowserView(QGraphicsWKView::BackingStoreType backingStoreType, QWKContext* context, QWidget* parent)
37 m_item = new QGraphicsWKView(context, backingStoreType, 0);
  /external/webkit/Source/WebCore/storage/
IDBFactoryBackendImpl.cpp 73 void IDBFactoryBackendImpl::open(const String& name, PassRefPtr<IDBCallbacks> callbacks, PassRefPtr<SecurityOrigin> securityOrigin, Frame*, const String& dataDir, int64_t maximumSize, BackingStoreType backingStoreType)
90 if (backingStoreType == DefaultBackingStore)
93 else if (backingStoreType == LevelDBBackingStore)
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qgraphicswkview.h 26 enum BackingStoreType { Simple, Tiled };
27 QGraphicsWKView(QWKContext* context, BackingStoreType backingStoreType = Simple, QGraphicsItem* parent = 0);
qwkpage_p.h 48 void init(QGraphicsItem*, QGraphicsWKView::BackingStoreType);
136 QGraphicsWKView::BackingStoreType backingStoreType;
qwkpage.cpp 95 , backingStoreType(QGraphicsWKView::Simple)
109 void QWKPagePrivate::init(QGraphicsItem* view, QGraphicsWKView::BackingStoreType backingStoreType)
112 this->backingStoreType = backingStoreType;
135 if (backingStoreType == QGraphicsWKView::Tiled)
qgraphicswkview.cpp 64 QGraphicsWKView::QGraphicsWKView(QWKContext* context, BackingStoreType backingStoreType, QGraphicsItem* parent)
73 if (backingStoreType == Tiled)
78 d->page->d->init(this, backingStoreType);
  /external/webkit/Source/WebKit/mac/Carbon/
CarbonWindowAdapter.mm 139 NSBackingStoreType backingStoreType;
171 backingStoreType = NSBackingStoreRetained;
190 self = (CarbonWindowAdapter*)[super _initContent:NULL styleMask:styleMask backing:backingStoreType defer:YES contentView:carbonWindowContentView];
    [all...]

Completed in 2678 milliseconds