/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
D | IDBKeyRange.cpp | 37 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 …]
|
D | IDBKeyRange.h | 39 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 …]
|
D | IDBIndex.cpp | 86 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()
|
D | IDBKeyRange.idl | 27 ] 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…
|
D | IDBObjectStore.cpp | 94 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()
|
D | IDBFactory.h | 43 class IDBKeyRange; variable
|
D | IDBIndex.h | 70 …PassRefPtr<IDBRequest> openCursor(ExecutionContext*, PassRefPtr<IDBKeyRange>, IndexedDB::CursorDir…
|
D | IDBCursor.cpp | 277 RefPtr<IDBKeyRange> keyRange = IDBKeyRange::only(m_primaryKey, exceptionState); in deleteFunction()
|
D | WorkerGlobalScopeIndexedDatabase.idl | 46 attribute IDBKeyRangeConstructor IDBKeyRange;
|
D | IDBObjectStore.h | 86 …PassRefPtr<IDBRequest> openCursor(ExecutionContext*, PassRefPtr<IDBKeyRange>, IndexedDB::CursorDir…
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebIDBKeyRange.cpp | 47 …IDBKeyRange::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/ |
D | WebIDBKeyRange.h | 32 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/ |
D | InspectorIndexedDBAgent.cpp | 358 static PassRefPtr<IDBKeyRange> idbKeyRangeFromKeyRange(JSONObject* keyRange) in idbKeyRangeFromKeyRange() 373 …IDBKeyRange::LowerBoundType lowerBoundType = lowerOpen ? IDBKeyRange::LowerBoundOpen : IDBKeyRange… in idbKeyRangeFromKeyRange() 378 …IDBKeyRange::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/ |
D | common.js | 11 window.IDBKeyRange = window.IDBKeyRange || window.webkitIDBKeyRange;
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | IDBBindingUtilities.h | 39 class IDBKeyRange; variable 52 PassRefPtr<IDBKeyRange> scriptValueToIDBKeyRange(DOMRequestState*, const ScriptValue&);
|
D | Dictionary.h | 48 class IDBKeyRange; variable
|
D | IDBBindingUtilities.cpp | 408 PassRefPtr<IDBKeyRange> scriptValueToIDBKeyRange(DOMRequestState* state, const ScriptValue& scriptV… in scriptValueToIDBKeyRange()
|
/external/chromium_org/content/test/data/indexeddb/ |
D | index_test.js | 36 var request = index.openCursor(IDBKeyRange.only(55)); 58 var request = index.openKeyCursor(IDBKeyRange.only(55));
|
D | transaction_test.js | 75 IDBKeyRange = webkitIDBKeyRange;
|
D | cursor_prefetch.js | 135 IDBKeyRange.upperBound(kNumberOfItems-1), 'prev'); 245 var cursorReq = store.openCursor(IDBKeyRange.lowerBound(startKey));
|
/external/chromium_org/tools/perf/page_sets/endure/ |
D | indexeddb_app_worker.js | 14 self.IDBKeyRange = self.IDBKeyRange || self.webkitIDBKeyRange;
|
D | indexeddb_app.js | 13 self.IDBKeyRange = self.IDBKeyRange || self.webkitIDBKeyRange;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | IndexedDBModel.js | 96 var IDBKeyRange = window.IDBKeyRange || window.webkitIDBKeyRange;
|
/external/chromium_org/third_party/WebKit/Source/modules/ |
D | modules.gypi | 79 'indexeddb/IDBKeyRange.idl', 381 'indexeddb/IDBKeyRange.cpp', 382 'indexeddb/IDBKeyRange.h',
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/ |
D | TestObject.idl | 215 // Class methods within JavaScript (like what's used for IDBKeyRange).
|