HomeSort by relevance Sort by last modified time
    Searched defs:storeName (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebKit/chromium/public/
WebIDBIndex.h 49 virtual WebString storeName() const
  /external/webkit/Source/WebKit/chromium/src/
IDBIndexBackendProxy.cpp 63 String IDBIndexBackendProxy::storeName()
65 return m_webIDBIndex->storeName();
WebIDBIndexImpl.cpp 56 WebString WebIDBIndexImpl::storeName() const
58 return m_backend->storeName();
  /external/webkit/Source/WebCore/storage/
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));
65 virtual String storeName() { return m_storeName; }
75 IDBIndexBackendImpl(IDBBackingStore*, int64_t databaseId, const IDBObjectStoreBackendImpl*, int64_t id, const String& name, const String& storeName, const String& keyPath, bool unique);
76 IDBIndexBackendImpl(IDBBackingStore*, int64_t databaseId, const IDBObjectStoreBackendImpl*, const String& name, const String& storeName, const String& keyPath, bool unique);

Completed in 99 milliseconds