/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
D | IDBIndex.cpp | 92 …IDBKeyRange* keyRange = IDBKeyRange::fromScriptValue(scriptState->executionContext(), range, excep… in openCursor() local 101 return openCursor(scriptState, keyRange, direction); in openCursor() 104 IDBRequest* IDBIndex::openCursor(ScriptState* scriptState, IDBKeyRange* keyRange, WebIDBCursorDirec… in openCursor() argument 108 …backendDB()->openCursor(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange, directi… in openCursor() 128 …IDBKeyRange* keyRange = IDBKeyRange::fromScriptValue(scriptState->executionContext(), range, excep… in count() local 138 …backendDB()->count(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange, WebIDBCallba… in count() 161 …IDBKeyRange* keyRange = IDBKeyRange::fromScriptValue(scriptState->executionContext(), range, excep… in openKeyCursor() local 171 …backendDB()->openCursor(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange, directi… in openKeyCursor() 202 …IDBKeyRange* keyRange = IDBKeyRange::fromScriptValue(scriptState->executionContext(), key, excepti… in getInternal() local 205 if (!keyRange) { in getInternal() [all …]
|
D | IDBObjectStore.cpp | 102 …IDBKeyRange* keyRange = IDBKeyRange::fromScriptValue(scriptState->executionContext(), key, excepti… in get() local 105 if (!keyRange) { in get() 115 …backendDB()->get(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, keyRange, false, WebIDBCa… in get() 285 …IDBKeyRange* keyRange = IDBKeyRange::fromScriptValue(scriptState->executionContext(), key, excepti… in deleteFunction() local 288 if (!keyRange) { in deleteFunction() 298 …backendDB()->deleteRange(m_transaction->id(), id(), keyRange, WebIDBCallbacksImpl::create(request)… in deleteFunction() 569 …IDBKeyRange* keyRange = IDBKeyRange::fromScriptValue(scriptState->executionContext(), range, excep… in openCursor() local 578 return openCursor(scriptState, keyRange, direction, WebIDBTaskTypeNormal); in openCursor() 610 …IDBKeyRange* keyRange = IDBKeyRange::fromScriptValue(scriptState->executionContext(), range, excep… in openKeyCursor() local 622 …backendDB()->openCursor(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, keyRange, directio… in openKeyCursor() [all …]
|
D | InspectorIndexedDBAgent.cpp | 362 static IDBKeyRange* idbKeyRangeFromKeyRange(JSONObject* keyRange) in idbKeyRangeFromKeyRange() argument 364 RefPtr<JSONObject> lower = keyRange->getObject("lower"); in idbKeyRangeFromKeyRange() 369 RefPtr<JSONObject> upper = keyRange->getObject("upper"); in idbKeyRangeFromKeyRange() 375 if (!keyRange->getBoolean("lowerOpen", &lowerOpen)) in idbKeyRangeFromKeyRange() 380 if (!keyRange->getBoolean("upperOpen", &upperOpen)) in idbKeyRangeFromKeyRange() 666 …ring& indexName, int skipCount, int pageSize, const RefPtr<JSONObject>* keyRange, const PassRefPtr… in requestData() argument 676 IDBKeyRange* idbKeyRange = keyRange ? idbKeyRangeFromKeyRange(keyRange->get()) : 0; in requestData() 677 if (keyRange && !idbKeyRange) { in requestData()
|
D | InspectorIndexedDBAgent.h | 59 …ring& indexName, int skipCount, int pageSize, const RefPtr<JSONObject>* keyRange, PassRefPtrWillBe…
|
D | IDBCursor.cpp | 262 IDBKeyRange* keyRange = IDBKeyRange::only(m_primaryKey, exceptionState); in deleteFunction() local 266 …endDB()->deleteRange(m_transaction->id(), effectiveObjectStore()->id(), keyRange, WebIDBCallbacksI… in deleteFunction()
|
/external/chromium_org/content/test/data/indexeddb/ |
D | cursor_test.js | 14 keyRange = IDBKeyRange.lowerBound('InexistentKey'); 15 request = objectStore.openCursor(keyRange); 40 var keyRange = IDBKeyRange.lowerBound(3.12); 41 var request = objectStore.openCursor(keyRange);
|
D | key_path_test.js | 23 keyRange = IDBKeyRange.lowerBound("myKey" + count); 24 request = objectStore.openCursor(keyRange);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
D | IndexedDBModel.js | 109 var keyRange = {}; 110 keyRange.lower = WebInspector.IndexedDBModel.keyFromIDBKey(idbKeyRange.lower); 111 keyRange.upper = WebInspector.IndexedDBModel.keyFromIDBKey(idbKeyRange.upper); 112 keyRange.lowerOpen = idbKeyRange.lowerOpen; 113 keyRange.upperOpen = idbKeyRange.upperOpen; 114 return keyRange; 415 var keyRange = WebInspector.IndexedDBModel.keyRangeFromIDBKeyRange(idbKeyRange); 416 …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 | 42 WebIDBKeyRange(const WebIDBKeyRange& keyRange) { assign(keyRange); } in WebIDBKeyRange() argument
|