/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
D | IDBIndex.cpp | 86 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, range, exceptionState); in openCursor() local 90 return openCursor(context, keyRange.release(), direction); in openCursor() 93 …IDBIndex::openCursor(ExecutionContext* context, PassRefPtr<IDBKeyRange> keyRange, IndexedDB::Curso… in openCursor() argument 97 …backendDB()->openCursor(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange, directi… in openCursor() 117 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, range, exceptionState); in count() local 122 …backendDB()->count(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange.release(), We… in count() 145 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, range, exceptionState); in openKeyCursor() local 151 …backendDB()->openCursor(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange.release(… in openKeyCursor() 171 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, key, exceptionState); in get() local 174 if (!keyRange) { in get() [all …]
|
D | IDBObjectStore.cpp | 94 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, key, exceptionState); in get() local 97 if (!keyRange) { in get() 103 …backendDB()->get(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, keyRange.release(), false… in get() 258 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, key, exceptionState); in deleteFunction() local 261 if (!keyRange) { in deleteFunction() 267 …backendDB()->deleteRange(m_transaction->id(), id(), keyRange.release(), WebIDBCallbacksImpl::creat… in deleteFunction() 532 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, range, exceptionState); in openCursor() local 536 return openCursor(context, keyRange, direction, WebIDBDatabase::NormalTask); in openCursor() 568 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, range, exceptionState); in openKeyCursor() local 575 …backendDB()->openCursor(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, keyRange.release()… in openKeyCursor() [all …]
|
D | IDBCursor.cpp | 277 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::only(m_primaryKey, exceptionState); in deleteFunction() local 281 …endDB()->deleteRange(m_transaction->id(), effectiveObjectStore()->id(), keyRange.release(), WebIDB… in deleteFunction()
|
/external/chromium_org/content/test/data/indexeddb/ |
D | cursor_test.js | 14 keyRange = webkitIDBKeyRange.lowerBound('InexistentKey'); 15 request = objectStore.openCursor(keyRange); 40 var keyRange = webkitIDBKeyRange.lowerBound(3.12); 41 var request = objectStore.openCursor(keyRange);
|
D | key_path_test.js | 23 keyRange = webkitIDBKeyRange.lowerBound("myKey" + count); 24 request = objectStore.openCursor(keyRange);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | IndexedDBModel.js | 100 var keyRange = {}; 101 keyRange.lower = WebInspector.IndexedDBModel.keyFromIDBKey(idbKeyRange.lower); 102 keyRange.upper = WebInspector.IndexedDBModel.keyFromIDBKey(idbKeyRange.upper); 103 keyRange.lowerOpen = idbKeyRange.lowerOpen; 104 keyRange.upperOpen = idbKeyRange.upperOpen; 105 return keyRange; 390 var keyRange = WebInspector.IndexedDBModel.keyRangeFromIDBKeyRange(idbKeyRange); 391 …in, databaseName, objectStoreName, indexName, skipCount, pageSize, keyRange ? keyRange : undefined…
|
/external/chromium_org/third_party/WebKit/Source/platform/network/ |
D | ParsedContentType.cpp | 152 SubstringRange keyRange = parseParameterPart(contentType, index); in parseContentType() local 153 if (!keyRange.second || index >= contentTypeLength) { in parseContentType() 168 …ameter value (at %i, for '%s').", index, substringForRange(contentType, keyRange).stripWhiteSpace(… in parseContentType() 178 receiver.setContentTypeParameter(keyRange, valueRange); in parseContentType()
|
/external/chromium_org/third_party/WebKit/public/platform/ |
D | WebIDBKeyRange.h | 43 WebIDBKeyRange(const WebIDBKeyRange& keyRange) { assign(keyRange); } in WebIDBKeyRange() argument
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorIndexedDBAgent.cpp | 358 static PassRefPtr<IDBKeyRange> idbKeyRangeFromKeyRange(JSONObject* keyRange) in idbKeyRangeFromKeyRange() argument 360 RefPtr<JSONObject> lower = keyRange->getObject("lower"); in idbKeyRangeFromKeyRange() 365 RefPtr<JSONObject> upper = keyRange->getObject("upper"); in idbKeyRangeFromKeyRange() 371 if (!keyRange->getBoolean("lowerOpen", &lowerOpen)) in idbKeyRangeFromKeyRange() 376 if (!keyRange->getBoolean("upperOpen", &upperOpen)) in idbKeyRangeFromKeyRange() 641 …ring& indexName, int skipCount, int pageSize, const RefPtr<JSONObject>* keyRange, PassRefPtr<Reque… in requestData() argument 653 RefPtr<IDBKeyRange> idbKeyRange = keyRange ? idbKeyRangeFromKeyRange(keyRange->get()) : 0; in requestData() 654 if (keyRange && !idbKeyRange) { in requestData()
|
D | InspectorIndexedDBAgent.h | 61 …ring& indexName, int skipCount, int pageSize, const RefPtr<JSONObject>* keyRange, PassRefPtr<Reque…
|