OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:keyRange
(Results
1 - 15
of
15
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBIndex.cpp
86
RefPtr<IDBKeyRange>
keyRange
= IDBKeyRange::fromScriptValue(context, range, exceptionState);
90
return openCursor(context,
keyRange
.release(), direction);
93
PassRefPtr<IDBRequest> IDBIndex::openCursor(ExecutionContext* context, PassRefPtr<IDBKeyRange>
keyRange
, IndexedDB::CursorDirection direction)
97
backendDB()->openCursor(m_transaction->id(), m_objectStore->id(), m_metadata.id,
keyRange
, direction, false, WebIDBDatabase::NormalTask, WebIDBCallbacksImpl::create(request).leakPtr());
117
RefPtr<IDBKeyRange>
keyRange
= IDBKeyRange::fromScriptValue(context, range, exceptionState);
122
backendDB()->count(m_transaction->id(), m_objectStore->id(), m_metadata.id,
keyRange
.release(), WebIDBCallbacksImpl::create(request).leakPtr());
145
RefPtr<IDBKeyRange>
keyRange
= IDBKeyRange::fromScriptValue(context, range, exceptionState);
151
backendDB()->openCursor(m_transaction->id(), m_objectStore->id(), m_metadata.id,
keyRange
.release(), direction, true, WebIDBDatabase::NormalTask, WebIDBCallbacksImpl::create(request).leakPtr());
171
RefPtr<IDBKeyRange>
keyRange
= IDBKeyRange::fromScriptValue(context, key, exceptionState);
174
if (!
keyRange
) {
[
all
...]
IDBObjectStore.cpp
94
RefPtr<IDBKeyRange>
keyRange
= IDBKeyRange::fromScriptValue(context, key, exceptionState);
97
if (!
keyRange
) {
103
backendDB()->get(m_transaction->id(), id(), IDBIndexMetadata::InvalidId,
keyRange
.release(), false, WebIDBCallbacksImpl::create(request).leakPtr());
258
RefPtr<IDBKeyRange>
keyRange
= IDBKeyRange::fromScriptValue(context, key, exceptionState);
261
if (!
keyRange
) {
267
backendDB()->deleteRange(m_transaction->id(), id(),
keyRange
.release(), WebIDBCallbacksImpl::create(request).leakPtr());
532
RefPtr<IDBKeyRange>
keyRange
= IDBKeyRange::fromScriptValue(context, range, exceptionState);
536
return openCursor(context,
keyRange
, direction, WebIDBDatabase::NormalTask);
568
RefPtr<IDBKeyRange>
keyRange
= IDBKeyRange::fromScriptValue(context, range, exceptionState);
575
backendDB()->openCursor(m_transaction->id(), id(), IDBIndexMetadata::InvalidId,
keyRange
.release(), direction, true, WebIDBDatabase::NormalTask, WebIDBCallbacksImpl::create(request).leakP (…)
[
all
...]
IDBCursor.cpp
277
RefPtr<IDBKeyRange>
keyRange
= IDBKeyRange::only(m_primaryKey, exceptionState);
281
m_transaction->backendDB()->deleteRange(m_transaction->id(), effectiveObjectStore()->id(),
keyRange
.release(), WebIDBCallbacksImpl::create(request).leakPtr());
/external/chromium_org/content/test/data/indexeddb/
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
);
key_path_test.js
23
keyRange
= webkitIDBKeyRange.lowerBound("myKey" + count);
24
request = objectStore.openCursor(
keyRange
);
/external/chromium_org/third_party/WebKit/public/platform/
WebIDBKeyRange.h
43
WebIDBKeyRange(const WebIDBKeyRange&
keyRange
) { assign(
keyRange
); }
/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/
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
IndexedDBAgent.requestData(databaseId.securityOrigin, databaseName, objectStoreName, indexName, skipCount, pageSize,
keyRange
?
keyRange
: undefined, innerCallback.bind(this));
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorIndexedDBAgent.h
61
virtual void requestData(ErrorString*, const String& securityOrigin, const String& databaseName, const String& objectStoreName, const String& indexName, int skipCount, int pageSize, const RefPtr<JSONObject>*
keyRange
, PassRefPtr<RequestDataCallback>);
InspectorIndexedDBAgent.cpp
69
using WebCore::TypeBuilder::IndexedDB::
KeyRange
;
358
static PassRefPtr<IDBKeyRange> idbKeyRangeFromKeyRange(JSONObject*
keyRange
)
360
RefPtr<JSONObject> lower =
keyRange
->getObject("lower");
365
RefPtr<JSONObject> upper =
keyRange
->getObject("upper");
371
if (!
keyRange
->getBoolean("lowerOpen", &lowerOpen))
376
if (!
keyRange
->getBoolean("upperOpen", &upperOpen))
641
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
, PassRefPtr<RequestDataCallback> requestCallback)
653
RefPtr<IDBKeyRange> idbKeyRange =
keyRange
? idbKeyRangeFromKeyRange(
keyRange
->get()) : 0;
654
if (
keyRange
&& !idbKeyRange)
[
all
...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/46/1/.cp/lib/
repository-tools-ant.jar
/external/droiddriver/libs/
guava-13.0.jar
/prebuilts/devtools/tools/lib/
guava-13.0.1.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 232 milliseconds