Home
last modified time | relevance | path

Searched refs:primaryKey (Results 1 – 21 of 21) sorted by relevance

/external/webkit/LayoutTests/storage/indexeddb/
Dindex-cursor-expected.txt26 PASS event.target.result.primaryKey is expectedIndex
28 PASS event.target.result.primaryKey is expectedIndex
30 PASS event.target.result.primaryKey is expectedIndex
32 PASS event.target.result.primaryKey is expectedIndex
34 PASS event.target.result.primaryKey is expectedIndex
36 PASS event.target.result.primaryKey is expectedIndex
41 PASS event.target.result.primaryKey is expectedIndex
43 PASS event.target.result.primaryKey is expectedIndex
45 PASS event.target.result.primaryKey is expectedIndex
47 PASS event.target.result.primaryKey is expectedIndex
[all …]
Dcursor-continue-expected.txt34 PASS event.target.result.primaryKey is 0
36 PASS event.target.result.primaryKey is 3
38 PASS event.target.result.primaryKey is 4
40 PASS event.target.result.primaryKey is 5
42 PASS event.target.result.primaryKey is 7
44 PASS event.target.result.primaryKey is 9
46 PASS event.target.result.primaryKey is 10
48 PASS event.target.result.primaryKey is 11
50 PASS event.target.result.primaryKey is 14
52 PASS event.target.result.primaryKey is 16
[all …]
Dduplicates-expected.txt31 PASS event.target.result.primaryKey is "key"
35 PASS event.target.result.primaryKey is "key2"
75 PASS event.target.result.primaryKey is "key"
79 PASS event.target.result.primaryKey is "key2"
Dcursor-update-expected.txt158 PASS event.target.result.primaryKey is counter
163 PASS event.target.result.primaryKey is counter
168 PASS event.target.result.primaryKey is counter
173 PASS event.target.result.primaryKey is counter
Dindex-basics-expected.txt54 PASS event.target.result.primaryKey is "key"
58 PASS event.target.result.primaryKey is "key2"
/external/webkit/Source/WebCore/storage/
DIDBCursorBackendImpl.cpp67 PassRefPtr<IDBKey> IDBCursorBackendImpl::primaryKey() const in primaryKey() function in WebCore::IDBCursorBackendImpl
69 return m_cursor->primaryKey(); in primaryKey()
85 …m_objectStore->put(value, m_cursor->primaryKey(), IDBObjectStoreBackendInterface::CursorUpdate, ca… in update()
120 m_objectStore->deleteFunction(m_cursor->primaryKey(), prpCallbacks, m_transaction.get(), ec); in deleteFunction()
DIDBCursor.cpp73 PassRefPtr<IDBKey> IDBCursor::primaryKey() const in primaryKey() function in WebCore::IDBCursor
75 return m_backend->primaryKey(); in primaryKey()
DIDBLevelDBBackingStore.cpp1772 …ifier> create(const Vector<char>& primaryKey, int64_t version) { return adoptRef(new LevelDBRecord… in create() argument
1776 Vector<char> primaryKey() const { return m_primaryKey; } in primaryKey() function in WebCore::__anon988460de0311::LevelDBRecordIdentifier
1777 void setPrimaryKey(const Vector<char>& primaryKey) { m_primaryKey = primaryKey; } in setPrimaryKey() argument
1782 …ntifier(const Vector<char>& primaryKey, int64_t version) : m_primaryKey(primaryKey), m_version(ver… in LevelDBRecordIdentifier() argument
1847 …key = ObjectStoreDataKey::encode(databaseId, objectStoreId, levelDBRecordIdentifier->primaryKey()); in deleteObjectStoreRecord()
1911 RefPtr<IDBKey> primaryKey = dataKey.userKey(); in forEachObjectStoreRecord() local
1918 …<LevelDBRecordIdentifier> ri = LevelDBRecordIdentifier::create(encodeIDBKey(*primaryKey), version); in forEachObjectStoreRecord()
2046 data.append(levelDBRecordIdentifier->primaryKey()); in putIndexDataForRecord()
2081 RefPtr<IDBKey> primaryKey = getPrimaryKeyViaIndex(databaseId, objectStoreId, indexId, key); in getObjectViaIndex() local
2082 if (!primaryKey) in getObjectViaIndex()
[all …]
DIDBCursorBackendInterface.h57 virtual PassRefPtr<IDBKey> primaryKey() const = 0;
DIDBCursor.h64 PassRefPtr<IDBKey> primaryKey() const;
DIDBCursorBackendImpl.h59 virtual PassRefPtr<IDBKey> primaryKey() const;
DIDBCursor.idl38 readonly attribute IDBKey primaryKey;
DIDBBackingStore.h90 virtual PassRefPtr<IDBKey> primaryKey() = 0;
DIDBSQLiteBackingStore.cpp707 virtual PassRefPtr<IDBKey> primaryKey() { return m_currentKey; } in primaryKey() function in WebCore::__anon392df7520211::CursorImplCommon
804 virtual PassRefPtr<IDBKey> primaryKey() { return m_currentPrimaryKey; } in primaryKey() function in WebCore::__anon392df7520211::IndexKeyCursorImpl
842 virtual PassRefPtr<IDBKey> primaryKey() { return m_currentPrimaryKey; } in primaryKey() function in WebCore::__anon392df7520211::IndexCursorImpl
/external/webkit/Source/WebKit/chromium/src/
DWebIDBCursorImpl.cpp60 WebIDBKey WebIDBCursorImpl::primaryKey() const in primaryKey() function in WebKit::WebIDBCursorImpl
62 return m_idbCursorBackend->primaryKey(); in primaryKey()
DIDBCursorBackendProxy.cpp67 PassRefPtr<IDBKey> IDBCursorBackendProxy::primaryKey() const in primaryKey() function in WebKit::IDBCursorBackendProxy
69 return m_idbCursor->primaryKey(); in primaryKey()
DWebIDBCursorImpl.h49 virtual WebIDBKey primaryKey() const;
DIDBCursorBackendProxy.h47 virtual PassRefPtr<WebCore::IDBKey> primaryKey() const;
/external/webkit/Source/WebKit/chromium/public/
DWebIDBCursor.h53 virtual WebIDBKey primaryKey() const in primaryKey() function
/external/webkit/Source/WebKit/chromium/
DChangeLog4946 Split IDBCursor.value into IDBCursor.primaryKey and IDBCursor.value
4950 (WebKit::WebIDBCursor::primaryKey):
4953 (WebCore::IDBCursorBackendProxy::primaryKey):
4958 (WebKit::WebIDBCursorImpl::primaryKey):
5021 Add a primaryKey method to IDBCursor
5027 (WebKit::WebIDBCursor::primaryKey):
/external/webkit/Source/WebCore/
DChangeLog54418 (WebCore::IndexKeyCursorImpl::primaryKey):
54426 (WebCore::IndexCursorImpl::primaryKey):
55123 Split IDBCursor.value into IDBCursor.primaryKey and IDBCursor.value
55130 index/objectStore.openCursor will return the latter. We'll add a primaryKey
55134 primaryKey. The value will be the value of the objectStore entry.
55149 (WebCore::IDBCursor::primaryKey):
55155 (WebCore::IDBCursorBackendImpl::primaryKey):