HomeSort by relevance Sort by last modified time
    Searched full:objectstore (Results 51 - 75 of 90) sorted by null

1 23 4

  /external/webkit/LayoutTests/storage/indexeddb/
objectstore-autoincrement.html 19 request = evalAndLog("webkitIndexedDB.open('objectstore-autoincrement')");
68 window.store = evalAndLog("store = trans.objectStore('StoreWithKeyPath')");
104 window.store = evalAndLog("store = trans.objectStore('StoreWithAutoIncrement')");
148 window.store = evalAndLog("store = trans.objectStore('PlainOldStore')");
transaction-abort-expected.txt 19 store = trans.objectStore('storeName')
transaction-after-close-expected.txt 18 objectStore.put('a', 'b')
index-basics-expected.txt 19 PASS 'objectStore' in indexObject is true
20 PASS indexObject.objectStore.name is "storeName"
transaction-event-propagation.html 57 store = evalAndLog("store = trans.objectStore('storeName')");
111 store = evalAndLog("store = trans.objectStore('storeName')");
create-and-remove-object-store.html 51 request = evalAndLog("trans.objectStore('tmp').get(0)");
cursor-continue.html 65 window.objectStore = evalAndLog("db.createObjectStore('someObjectStore')");
66 window.indexObject = evalAndLog("objectStore.createIndex('someIndex', 'x')");
73 result = evalAndLog("objectStore.add({'x': testData[nextToAdd]}, nextToAdd)");
request-event-propagation-expected.txt 21 store = trans.objectStore('storeName')
39 store = trans.objectStore('storeName')
110 store = trans.objectStore('storeName')
request-event-propagation.html 55 store = evalAndLog("store = trans.objectStore('storeName')");
84 store = evalAndLog("store = trans.objectStore('storeName')");
191 store = evalAndLog("store = trans.objectStore('storeName')");
index-cursor.html 54 window.objectStore = evalAndLog("db.createObjectStore('someObjectStore')");
55 window.indexObject = evalAndLog("objectStore.createIndex('someIndex', 'x')");
62 result = evalAndLog("objectStore.add({'x': testData[nextToAdd]}, nextToAdd)");
transaction-abort.html 53 store = evalAndLog("store = trans.objectStore('storeName')");
  /external/webkit/Source/WebCore/storage/
IDBIndexBackendImpl.cpp 96 RefPtr<IDBObjectStoreBackendInterface> objectStore = transaction->objectStore(index->m_storeName, ec);
97 ASSERT(objectStore && !ec);
99 RefPtr<IDBCursorBackendInterface> cursor = IDBCursorBackendImpl::create(backingStoreCursor.get(), direction, cursorType, transaction.get(), objectStore.get());
IDBTransaction.cpp 84 PassRefPtr<IDBObjectStore> IDBTransaction::objectStore(const String& name, ExceptionCode& ec)
90 RefPtr<IDBObjectStoreBackendInterface> objectStoreBackend = m_backend->objectStore(name, ec);
95 RefPtr<IDBObjectStore> objectStore = IDBObjectStore::create(objectStoreBackend, this);
96 return objectStore.release();
IDBCursorBackendImpl.cpp 44 IDBCursorBackendImpl::IDBCursorBackendImpl(PassRefPtr<IDBBackingStore::Cursor> cursor, IDBCursor::Direction direction, CursorType cursorType, IDBTransactionBackendInterface* transaction, IDBObjectStoreBackendInterface* objectStore)
49 , m_objectStore(objectStore)
IDBIndex.cpp 44 IDBIndex::IDBIndex(PassRefPtr<IDBIndexBackendInterface> backend, IDBObjectStore* objectStore, IDBTransaction* transaction)
46 , m_objectStore(objectStore)
IDBIndex.idl 32 readonly attribute IDBObjectStore objectStore;
IDBTransaction.idl 41 IDBObjectStore objectStore (in DOMString name)
IDBDatabase.cpp 88 RefPtr<IDBObjectStoreBackendInterface> objectStore = m_backend->createObjectStore(name, keyPath, autoIncrement, m_setVersionTransaction->backend(), ec);
89 if (!objectStore) {
93 return IDBObjectStore::create(objectStore.release(), m_setVersionTransaction.get());
  /external/webkit/Source/WebKit/chromium/src/
IDBObjectStoreBackendProxy.cpp 48 PassRefPtr<IDBObjectStoreBackendInterface> IDBObjectStoreBackendProxy::create(PassOwnPtr<WebIDBObjectStore> objectStore)
50 return adoptRef(new IDBObjectStoreBackendProxy(objectStore));
53 IDBObjectStoreBackendProxy::IDBObjectStoreBackendProxy(PassOwnPtr<WebIDBObjectStore> objectStore)
54 : m_webIDBObjectStore(objectStore)
WebIDBObjectStoreImpl.cpp 46 WebIDBObjectStoreImpl::WebIDBObjectStoreImpl(PassRefPtr<IDBObjectStoreBackendInterface> objectStore)
47 : m_objectStore(objectStore)
IDBTransactionBackendProxy.h 44 virtual PassRefPtr<WebCore::IDBObjectStoreBackendInterface> objectStore(const String& name, WebCore::ExceptionCode&);
WebIDBTransactionImpl.h 45 virtual WebIDBObjectStore* objectStore(const WebString& name, WebExceptionCode&);
  /external/webkit/Source/WebKit/chromium/public/
WebIDBTransaction.h 49 virtual WebIDBObjectStore* objectStore(const WebString& name, WebExceptionCode&)
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
ObjectStore.java 49 public class ObjectStore {
51 private static final Logger logger = Logger.getLogger(ObjectStore.class.getName());
127 public ObjectStore(Client client) {
136 public ObjectStore(Server server) {
  /external/webkit/Source/WebCore/manual-tests/
indexeddb-persists.html 51 var result = event.result.transaction([]).objectStore("test").get("key");

Completed in 1039 milliseconds

1 23 4