Home
last modified time | relevance | path

Searched refs:IDBKeyRange (Results 1 – 25 of 44) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DIDBKeyRange.cpp37 PassRefPtr<IDBKeyRange> IDBKeyRange::fromScriptValue(ExecutionContext* context, const ScriptValue& … in fromScriptValue()
43 RefPtr<IDBKeyRange> range = scriptValueToIDBKeyRange(&requestState, value); in fromScriptValue()
53 return adoptRef(new IDBKeyRange(key, key, LowerBoundClosed, UpperBoundClosed)); in fromScriptValue()
56 IDBKeyRange::IDBKeyRange(PassRefPtr<IDBKey> lower, PassRefPtr<IDBKey> upper, LowerBoundType lowerTy… in IDBKeyRange() function in WebCore::IDBKeyRange
65 ScriptValue IDBKeyRange::lowerValue(ExecutionContext* context) const in lowerValue()
71 ScriptValue IDBKeyRange::upperValue(ExecutionContext* context) const in upperValue()
77 PassRefPtr<IDBKeyRange> IDBKeyRange::only(PassRefPtr<IDBKey> prpKey, ExceptionState& exceptionState) in only()
85 return IDBKeyRange::create(key, key, LowerBoundClosed, UpperBoundClosed); in only()
88 PassRefPtr<IDBKeyRange> IDBKeyRange::only(ExecutionContext* context, const ScriptValue& keyValue, E… in only()
97 return IDBKeyRange::create(key, key, LowerBoundClosed, UpperBoundClosed); in only()
[all …]
DIDBKeyRange.h39 class IDBKeyRange : public ScriptWrappable, public RefCounted<IDBKeyRange> {
50 …static PassRefPtr<IDBKeyRange> create(PassRefPtr<IDBKey> lower, PassRefPtr<IDBKey> upper, LowerBou… in create()
52 return adoptRef(new IDBKeyRange(lower, upper, lowerType, upperType)); in create()
55 …static PassRefPtr<IDBKeyRange> fromScriptValue(ExecutionContext*, const ScriptValue&, ExceptionSta…
57 ~IDBKeyRange() { } in ~IDBKeyRange()
68 static PassRefPtr<IDBKeyRange> only(ExecutionContext*, const ScriptValue& key, ExceptionState&);
69 …static PassRefPtr<IDBKeyRange> lowerBound(ExecutionContext*, const ScriptValue& bound, bool open, …
70 …static PassRefPtr<IDBKeyRange> upperBound(ExecutionContext*, const ScriptValue& bound, bool open, …
71 …static PassRefPtr<IDBKeyRange> bound(ExecutionContext*, const ScriptValue& lower, const ScriptValu…
73 static PassRefPtr<IDBKeyRange> only(PassRefPtr<IDBKey> value, ExceptionState&);
[all …]
DIDBIndex.cpp86 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, range, exceptionState); in openCursor()
93 PassRefPtr<IDBRequest> IDBIndex::openCursor(ExecutionContext* context, PassRefPtr<IDBKeyRange> keyR… in openCursor()
117 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, range, exceptionState); in count()
145 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, range, exceptionState); in openKeyCursor()
171 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, key, exceptionState); in get()
200 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, key, exceptionState); in getKey()
DIDBKeyRange.idl27 ] interface IDBKeyRange {
33 [CallWith=ExecutionContext, RaisesException] static IDBKeyRange only(any value);
34 …[CallWith=ExecutionContext, RaisesException] static IDBKeyRange lowerBound(any bound, [Default=Und…
35 …[CallWith=ExecutionContext, RaisesException] static IDBKeyRange upperBound(any bound, [Default=Und…
36 …[CallWith=ExecutionContext, RaisesException] static IDBKeyRange bound(any lower, any upper, [Defau…
DIDBObjectStore.cpp94 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, key, exceptionState); in get()
258 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, key, exceptionState); in deleteFunction()
429 …RefPtr<IDBRequest> indexRequest = openCursor(context, static_cast<IDBKeyRange*>(0), IndexedDB::Cur… in createIndex()
532 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, range, exceptionState); in openCursor()
539 PassRefPtr<IDBRequest> IDBObjectStore::openCursor(ExecutionContext* context, PassRefPtr<IDBKeyRange in openCursor()
568 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, range, exceptionState); in openKeyCursor()
595 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::fromScriptValue(context, range, exceptionState); in count()
DIDBFactory.h43 class IDBKeyRange; variable
DIDBIndex.h70 …PassRefPtr<IDBRequest> openCursor(ExecutionContext*, PassRefPtr<IDBKeyRange>, IndexedDB::CursorDir…
DIDBCursor.cpp277 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::only(m_primaryKey, exceptionState); in deleteFunction()
DWorkerGlobalScopeIndexedDatabase.idl46 attribute IDBKeyRangeConstructor IDBKeyRange;
DIDBObjectStore.h86 …PassRefPtr<IDBRequest> openCursor(ExecutionContext*, PassRefPtr<IDBKeyRange>, IndexedDB::CursorDir…
/external/chromium_org/third_party/WebKit/Source/web/
DWebIDBKeyRange.cpp47IDBKeyRange::create(lower, upper, lowerOpen ? IDBKeyRange::LowerBoundOpen : IDBKeyRange::LowerBoun… in assign()
79 WebIDBKeyRange::WebIDBKeyRange(const PassRefPtr<IDBKeyRange>& value) in WebIDBKeyRange()
84 WebIDBKeyRange& WebIDBKeyRange::operator=(const PassRefPtr<IDBKeyRange>& value) in operator =()
90 WebIDBKeyRange::operator PassRefPtr<IDBKeyRange>() const in operator PassRefPtr<IDBKeyRange>()
/external/chromium_org/third_party/WebKit/public/platform/
DWebIDBKeyRange.h32 namespace WebCore { class IDBKeyRange; } variable
56 WebIDBKeyRange(const WTF::PassRefPtr<WebCore::IDBKeyRange>&);
57 WebIDBKeyRange& operator=(const WTF::PassRefPtr<WebCore::IDBKeyRange>&);
58 operator WTF::PassRefPtr<WebCore::IDBKeyRange>() const;
62 WebPrivatePtr<WebCore::IDBKeyRange> m_private;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorIndexedDBAgent.cpp358 static PassRefPtr<IDBKeyRange> idbKeyRangeFromKeyRange(JSONObject* keyRange) in idbKeyRangeFromKeyRange()
373IDBKeyRange::LowerBoundType lowerBoundType = lowerOpen ? IDBKeyRange::LowerBoundOpen : IDBKeyRange in idbKeyRangeFromKeyRange()
378IDBKeyRange::UpperBoundType upperBoundType = upperOpen ? IDBKeyRange::UpperBoundOpen : IDBKeyRange in idbKeyRangeFromKeyRange()
380 …RefPtr<IDBKeyRange> idbKeyRange = IDBKeyRange::create(idbLower, idbUpper, lowerBoundType, upperBou… in idbKeyRangeFromKeyRange()
476 …pt, const String& objectStoreName, const String& indexName, PassRefPtr<IDBKeyRange> idbKeyRange, i… in create()
509 …idbRequest = idbIndex->openCursor(context(), PassRefPtr<IDBKeyRange>(m_idbKeyRange), IndexedDB::Cu… in execute()
511 …idbRequest = idbObjectStore->openCursor(context(), PassRefPtr<IDBKeyRange>(m_idbKeyRange), Indexed… in execute()
517 …pt, const String& objectStoreName, const String& indexName, PassRefPtr<IDBKeyRange> idbKeyRange, i… in DataLoader()
530 RefPtr<IDBKeyRange> m_idbKeyRange;
653 RefPtr<IDBKeyRange> idbKeyRange = keyRange ? idbKeyRangeFromKeyRange(keyRange->get()) : 0; in requestData()
/external/chromium_org/tools/page_cycler/indexed_db/
Dcommon.js11 window.IDBKeyRange = window.IDBKeyRange || window.webkitIDBKeyRange;
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
DIDBBindingUtilities.h39 class IDBKeyRange; variable
52 PassRefPtr<IDBKeyRange> scriptValueToIDBKeyRange(DOMRequestState*, const ScriptValue&);
DDictionary.h48 class IDBKeyRange; variable
DIDBBindingUtilities.cpp408 PassRefPtr<IDBKeyRange> scriptValueToIDBKeyRange(DOMRequestState* state, const ScriptValue& scriptV… in scriptValueToIDBKeyRange()
/external/chromium_org/content/test/data/indexeddb/
Dindex_test.js36 var request = index.openCursor(IDBKeyRange.only(55));
58 var request = index.openKeyCursor(IDBKeyRange.only(55));
Dtransaction_test.js75 IDBKeyRange = webkitIDBKeyRange;
Dcursor_prefetch.js135 IDBKeyRange.upperBound(kNumberOfItems-1), 'prev');
245 var cursorReq = store.openCursor(IDBKeyRange.lowerBound(startKey));
/external/chromium_org/tools/perf/page_sets/endure/
Dindexeddb_app_worker.js14 self.IDBKeyRange = self.IDBKeyRange || self.webkitIDBKeyRange;
Dindexeddb_app.js13 self.IDBKeyRange = self.IDBKeyRange || self.webkitIDBKeyRange;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DIndexedDBModel.js96 var IDBKeyRange = window.IDBKeyRange || window.webkitIDBKeyRange;
/external/chromium_org/third_party/WebKit/Source/modules/
Dmodules.gypi79 'indexeddb/IDBKeyRange.idl',
381 'indexeddb/IDBKeyRange.cpp',
382 'indexeddb/IDBKeyRange.h',
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
DTestObject.idl215 // Class methods within JavaScript (like what's used for IDBKeyRange).

12