HomeSort by relevance Sort by last modified time
    Searched refs:keyRange (Results 1 - 15 of 15) sorted by null

  /external/chromium_org/content/test/data/indexeddb/
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);
key_path_test.js 23 keyRange = IDBKeyRange.lowerBound("myKey" + count);
24 request = objectStore.openCursor(keyRange);
  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBKeyRange.h 42 WebIDBKeyRange(const WebIDBKeyRange& keyRange) { assign(keyRange); }
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBIndex.cpp 92 IDBKeyRange* keyRange = IDBKeyRange::fromScriptValue(scriptState->executionContext(), range, exceptionState);
101 return openCursor(scriptState, keyRange, direction);
104 IDBRequest* IDBIndex::openCursor(ScriptState* scriptState, IDBKeyRange* keyRange, WebIDBCursorDirection direction)
108 backendDB()->openCursor(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange, direction, false, WebIDBTaskTypeNormal, WebIDBCallbacksImpl::create(request).leakPtr());
128 IDBKeyRange* keyRange = IDBKeyRange::fromScriptValue(scriptState->executionContext(), range, exceptionState);
138 backendDB()->count(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange, WebIDBCallbacksImpl::create(request).leakPtr());
161 IDBKeyRange* keyRange = IDBKeyRange::fromScriptValue(scriptState->executionContext(), range, exceptionState);
171 backendDB()->openCursor(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange, direction, true, WebIDBTaskTypeNormal, WebIDBCallbacksImpl::create(request).leakPtr());
202 IDBKeyRange* keyRange = IDBKeyRange::fromScriptValue(scriptState->executionContext(), key, exceptionState);
205 if (!keyRange) {
    [all...]
InspectorIndexedDBAgent.h 59 virtual void requestData(ErrorString*, const String& securityOrigin, const String& databaseName, const String& objectStoreName, const String& indexName, int skipCount, int pageSize, const RefPtr<JSONObject>* keyRange, PassRefPtrWillBeRawPtr<RequestDataCallback>) OVERRIDE;
IDBObjectStore.cpp 102 IDBKeyRange* keyRange = IDBKeyRange::fromScriptValue(scriptState->executionContext(), key, exceptionState);
105 if (!keyRange) {
115 backendDB()->get(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, keyRange, false, WebIDBCallbacksImpl::create(request).leakPtr());
285 IDBKeyRange* keyRange = IDBKeyRange::fromScriptValue(scriptState->executionContext(), key, exceptionState);
288 if (!keyRange) {
298 backendDB()->deleteRange(m_transaction->id(), id(), keyRange, WebIDBCallbacksImpl::create(request).leakPtr());
569 IDBKeyRange* keyRange = IDBKeyRange::fromScriptValue(scriptState->executionContext(), range, exceptionState);
578 return openCursor(scriptState, keyRange, direction, WebIDBTaskTypeNormal);
610 IDBKeyRange* keyRange = IDBKeyRange::fromScriptValue(scriptState->executionContext(), range, exceptionState);
622 backendDB()->openCursor(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, keyRange, direction, true, WebIDBTaskTypeNormal, WebIDBCallbacksImpl::create(request).leakPtr())
    [all...]
InspectorIndexedDBAgent.cpp 72 using blink::TypeBuilder::IndexedDB::KeyRange;
362 static IDBKeyRange* idbKeyRangeFromKeyRange(JSONObject* keyRange)
364 RefPtr<JSONObject> lower = keyRange->getObject("lower");
369 RefPtr<JSONObject> upper = keyRange->getObject("upper");
375 if (!keyRange->getBoolean("lowerOpen", &lowerOpen))
380 if (!keyRange->getBoolean("upperOpen", &upperOpen))
666 void InspectorIndexedDBAgent::requestData(ErrorString* errorString, const String& securityOrigin, const String& databaseName, const String& objectStoreName, const String& indexName, int skipCount, int pageSize, const RefPtr<JSONObject>* keyRange, const PassRefPtrWillBeRawPtr<RequestDataCallback> requestCallback)
676 IDBKeyRange* idbKeyRange = keyRange ? idbKeyRangeFromKeyRange(keyRange->get()) : 0;
677 if (keyRange && !idbKeyRange)
    [all...]
IDBCursor.cpp 262 IDBKeyRange* keyRange = IDBKeyRange::only(m_primaryKey, exceptionState);
266 m_transaction->backendDB()->deleteRange(m_transaction->id(), effectiveObjectStore()->id(), keyRange, WebIDBCallbacksImpl::create(request).leakPtr());
  /external/chromium_org/third_party/WebKit/Source/platform/network/
ParsedContentType.cpp 152 SubstringRange keyRange = parseParameterPart(contentType, index);
153 if (!keyRange.second || index >= contentTypeLength) {
168 WTF_LOG_ERROR("Invalid Content-Type, invalid parameter value (at %i, for '%s').", index, substringForRange(contentType, keyRange).stripWhiteSpace().ascii().data());
178 receiver.setContentTypeParameter(keyRange, valueRange);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
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 this._agent.requestData(databaseId.securityOrigin, databaseName, objectStoreName, indexName, skipCount, pageSize, keyRange ? keyRange : undefined, innerCallback.bind(this));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/46/1/.cp/lib/
repository-tools-ant.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/sdk/tools/
jill.jar 
  /prebuilts/tools/common/guava-tools/
guava-13.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/13.0.1/
guava-13.0.1.jar 

Completed in 309 milliseconds