Home
last modified time | relevance | path

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

12

/external/webkit/Source/WebCore/storage/
DIDBKeyRange.cpp35 IDBKeyRange::IDBKeyRange(PassRefPtr<IDBKey> lower, PassRefPtr<IDBKey> upper, bool lowerOpen, bool u… in IDBKeyRange() function in WebCore::IDBKeyRange
43 PassRefPtr<IDBKeyRange> IDBKeyRange::only(PassRefPtr<IDBKey> prpValue) in only()
46 return IDBKeyRange::create(value, value, false, false); in only()
49 PassRefPtr<IDBKeyRange> IDBKeyRange::lowerBound(PassRefPtr<IDBKey> bound, bool open) in lowerBound()
51 return IDBKeyRange::create(bound, 0, open, false); in lowerBound()
54 PassRefPtr<IDBKeyRange> IDBKeyRange::upperBound(PassRefPtr<IDBKey> bound, bool open) in upperBound()
56 return IDBKeyRange::create(0, bound, false, open); in upperBound()
59 PassRefPtr<IDBKeyRange> IDBKeyRange::bound(PassRefPtr<IDBKey> lower, PassRefPtr<IDBKey> upper, bool… in bound()
61 return IDBKeyRange::create(lower, upper, lowerOpen, upperOpen); in bound()
DIDBKeyRange.h38 class IDBKeyRange : public ThreadSafeRefCounted<IDBKeyRange> {
40 …static PassRefPtr<IDBKeyRange> create(PassRefPtr<IDBKey> lower, PassRefPtr<IDBKey> upper, bool low… in create()
42 return adoptRef(new IDBKeyRange(lower, upper, lowerOpen, upperOpen)); in create()
44 ~IDBKeyRange() { } in ~IDBKeyRange()
51 static PassRefPtr<IDBKeyRange> only(PassRefPtr<IDBKey> value);
52 static PassRefPtr<IDBKeyRange> lowerBound(PassRefPtr<IDBKey> bound, bool open = false);
53 static PassRefPtr<IDBKeyRange> upperBound(PassRefPtr<IDBKey> bound, bool open = false);
54 …static PassRefPtr<IDBKeyRange> bound(PassRefPtr<IDBKey> lower, PassRefPtr<IDBKey> upper, bool lowe…
57 IDBKeyRange(PassRefPtr<IDBKey> lower, PassRefPtr<IDBKey> upper, bool lowerOpen, bool upperOpen);
DIDBIndex.h58 …PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRang… in openCursor()
59 …PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, unsigned short…
62 …PassRefPtr<IDBRequest> openKeyCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyR… in openKeyCursor()
63 …PassRefPtr<IDBRequest> openKeyCursor(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, unsigned sh…
DIDBKeyRange.idl30 ] IDBKeyRange {
37 [ClassMethod] IDBKeyRange only(in IDBKey value);
38 [ClassMethod] IDBKeyRange lowerBound(in IDBKey bound, in [Optional] boolean open);
39 [ClassMethod] IDBKeyRange upperBound(in IDBKey bound, in [Optional] boolean open);
40 …[ClassMethod] IDBKeyRange bound(in IDBKey lower, in IDBKey upper, in [Optional] boolean lowerOpen,…
DIDBIndexBackendInterface.h39 class IDBKeyRange; variable
51 …virtual void openCursor(PassRefPtr<IDBKeyRange>, unsigned short direction, PassRefPtr<IDBCallbacks…
52 …virtual void openKeyCursor(PassRefPtr<IDBKeyRange>, unsigned short direction, PassRefPtr<IDBCallba…
DIDBIndexBackendImpl.cpp71 …ptExecutionContext*, PassRefPtr<IDBIndexBackendImpl> index, PassRefPtr<IDBKeyRange> range, unsigne… in openCursorInternal()
103 void IDBIndexBackendImpl::openCursor(PassRefPtr<IDBKeyRange> prpKeyRange, unsigned short direction,… in openCursor()
106 RefPtr<IDBKeyRange> keyRange = prpKeyRange; in openCursor()
113 void IDBIndexBackendImpl::openKeyCursor(PassRefPtr<IDBKeyRange> prpKeyRange, unsigned short directi… in openKeyCursor()
116 RefPtr<IDBKeyRange> keyRange = prpKeyRange; in openKeyCursor()
DIDBBackingStore.h42 class IDBKeyRange; variable
97 …openObjectStoreCursor(int64_t databaseId, int64_t objectStoreId, const IDBKeyRange*, IDBCursor::Di…
98 …rsor(int64_t databaseId, int64_t objectStoreId, int64_t indexId, const IDBKeyRange*, IDBCursor::Di…
99 …rsor(int64_t databaseId, int64_t objectStoreId, int64_t indexId, const IDBKeyRange*, IDBCursor::Di…
DIDBIndexBackendImpl.h69 …virtual void openCursor(PassRefPtr<IDBKeyRange>, unsigned short direction, PassRefPtr<IDBCallbacks…
70 …virtual void openKeyCursor(PassRefPtr<IDBKeyRange>, unsigned short direction, PassRefPtr<IDBCallba…
78 …l(ScriptExecutionContext*, PassRefPtr<IDBIndexBackendImpl>, PassRefPtr<IDBKeyRange>, unsigned shor…
DIDBSQLiteBackingStore.h65 …openObjectStoreCursor(int64_t databaseId, int64_t objectStoreId, const IDBKeyRange*, IDBCursor::Di…
66 …rsor(int64_t databaseId, int64_t objectStoreId, int64_t indexId, const IDBKeyRange*, IDBCursor::Di…
67 …rsor(int64_t databaseId, int64_t objectStoreId, int64_t indexId, const IDBKeyRange*, IDBCursor::Di…
DIDBObjectStoreBackendInterface.h41 class IDBKeyRange; variable
69 …virtual void openCursor(PassRefPtr<IDBKeyRange>, unsigned short direction, PassRefPtr<IDBCallbacks…
DIDBLevelDBBackingStore.h70 …openObjectStoreCursor(int64_t databaseId, int64_t objectStoreId, const IDBKeyRange*, IDBCursor::Di…
71 …rsor(int64_t databaseId, int64_t objectStoreId, int64_t indexId, const IDBKeyRange*, IDBCursor::Di…
72 …rsor(int64_t databaseId, int64_t objectStoreId, int64_t indexId, const IDBKeyRange*, IDBCursor::Di…
DIDBObjectStore.h66 …PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRang… in openCursor()
78 …PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, unsigned short…
DIDBIndex.cpp58 PassRefPtr<IDBRequest> IDBIndex::openCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange in openCursor()
76 …t> IDBIndex::openKeyCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRange, unsi… in openKeyCursor()
DIDBIndex.idl36 …[CallWith=ScriptExecutionContext] IDBRequest openCursor(in [Optional] IDBKeyRange range, in [Optio…
38 …[CallWith=ScriptExecutionContext] IDBRequest openKeyCursor(in [Optional] IDBKeyRange range, in [Op…
DIDBObjectStoreBackendImpl.h78 …virtual void openCursor(PassRefPtr<IDBKeyRange> range, unsigned short direction, PassRefPtr<IDBCal…
95 …ptExecutionContext*, PassRefPtr<IDBObjectStoreBackendImpl>, PassRefPtr<IDBKeyRange> range, unsigne…
DIDBFactory.h45 class IDBKeyRange; variable
DIDBCursorBackendImpl.h43 class IDBKeyRange; variable
/external/webkit/Source/WebKit/chromium/public/
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/webkit/Source/WebKit/chromium/src/
DWebIDBKeyRange.cpp49 m_private = IDBKeyRange::create(lower, upper, lowerOpen, upperOpen); in assign()
81 WebIDBKeyRange::WebIDBKeyRange(const PassRefPtr<IDBKeyRange>& value) in WebIDBKeyRange()
86 WebIDBKeyRange& WebIDBKeyRange::operator=(const PassRefPtr<IDBKeyRange>& value) in operator =()
92 WebIDBKeyRange::operator PassRefPtr<IDBKeyRange>() const in operator PassRefPtr<IDBKeyRange>()
DIDBIndexBackendProxy.h49 …virtual void openCursor(PassRefPtr<WebCore::IDBKeyRange>, unsigned short direction, PassRefPtr<Web…
50 …virtual void openKeyCursor(PassRefPtr<WebCore::IDBKeyRange>, unsigned short direction, PassRefPtr<…
DIDBIndexBackendProxy.cpp78 void IDBIndexBackendProxy::openCursor(PassRefPtr<IDBKeyRange> keyRange, unsigned short direction, P… in openCursor()
86 void IDBIndexBackendProxy::openKeyCursor(PassRefPtr<IDBKeyRange> keyRange, unsigned short direction… in openKeyCursor()
DIDBObjectStoreBackendProxy.h58 …virtual void openCursor(PassRefPtr<WebCore::IDBKeyRange>, unsigned short direction, PassRefPtr<Web…
DIDBObjectStoreBackendProxy.cpp136 void IDBObjectStoreBackendProxy::openCursor(PassRefPtr<IDBKeyRange> range, unsigned short direction… in openCursor()
/external/webkit/Source/WebCore/bindings/v8/
DOptionsObject.h35 class IDBKeyRange; variable
50 PassRefPtr<IDBKeyRange> getKeyKeyRange(const String& key) const;
DOptionsObject.cpp126 PassRefPtr<IDBKeyRange> OptionsObject::getKeyKeyRange(const String& key) const in getKeyKeyRange()

12