/external/webkit/Source/WebCore/storage/ |
D | IDBKeyRange.cpp | 35 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()
|
D | IDBKeyRange.h | 38 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);
|
D | IDBIndex.h | 58 …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…
|
D | IDBKeyRange.idl | 30 ] 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,…
|
D | IDBIndexBackendInterface.h | 39 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…
|
D | IDBIndexBackendImpl.cpp | 71 …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()
|
D | IDBBackingStore.h | 42 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…
|
D | IDBIndexBackendImpl.h | 69 …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…
|
D | IDBSQLiteBackingStore.h | 65 …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…
|
D | IDBObjectStoreBackendInterface.h | 41 class IDBKeyRange; variable 69 …virtual void openCursor(PassRefPtr<IDBKeyRange>, unsigned short direction, PassRefPtr<IDBCallbacks…
|
D | IDBLevelDBBackingStore.h | 70 …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…
|
D | IDBObjectStore.h | 66 …PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRang… in openCursor() 78 …PassRefPtr<IDBRequest> openCursor(ScriptExecutionContext*, PassRefPtr<IDBKeyRange>, unsigned short…
|
D | IDBIndex.cpp | 58 PassRefPtr<IDBRequest> IDBIndex::openCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange… in openCursor() 76 …t> IDBIndex::openKeyCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRange, unsi… in openKeyCursor()
|
D | IDBIndex.idl | 36 …[CallWith=ScriptExecutionContext] IDBRequest openCursor(in [Optional] IDBKeyRange range, in [Optio… 38 …[CallWith=ScriptExecutionContext] IDBRequest openKeyCursor(in [Optional] IDBKeyRange range, in [Op…
|
D | IDBObjectStoreBackendImpl.h | 78 …virtual void openCursor(PassRefPtr<IDBKeyRange> range, unsigned short direction, PassRefPtr<IDBCal… 95 …ptExecutionContext*, PassRefPtr<IDBObjectStoreBackendImpl>, PassRefPtr<IDBKeyRange> range, unsigne…
|
D | IDBFactory.h | 45 class IDBKeyRange; variable
|
D | IDBCursorBackendImpl.h | 43 class IDBKeyRange; variable
|
/external/webkit/Source/WebKit/chromium/public/ |
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/webkit/Source/WebKit/chromium/src/ |
D | WebIDBKeyRange.cpp | 49 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>()
|
D | IDBIndexBackendProxy.h | 49 …virtual void openCursor(PassRefPtr<WebCore::IDBKeyRange>, unsigned short direction, PassRefPtr<Web… 50 …virtual void openKeyCursor(PassRefPtr<WebCore::IDBKeyRange>, unsigned short direction, PassRefPtr<…
|
D | IDBIndexBackendProxy.cpp | 78 void IDBIndexBackendProxy::openCursor(PassRefPtr<IDBKeyRange> keyRange, unsigned short direction, P… in openCursor() 86 void IDBIndexBackendProxy::openKeyCursor(PassRefPtr<IDBKeyRange> keyRange, unsigned short direction… in openKeyCursor()
|
D | IDBObjectStoreBackendProxy.h | 58 …virtual void openCursor(PassRefPtr<WebCore::IDBKeyRange>, unsigned short direction, PassRefPtr<Web…
|
D | IDBObjectStoreBackendProxy.cpp | 136 void IDBObjectStoreBackendProxy::openCursor(PassRefPtr<IDBKeyRange> range, unsigned short direction… in openCursor()
|
/external/webkit/Source/WebCore/bindings/v8/ |
D | OptionsObject.h | 35 class IDBKeyRange; variable 50 PassRefPtr<IDBKeyRange> getKeyKeyRange(const String& key) const;
|
D | OptionsObject.cpp | 126 PassRefPtr<IDBKeyRange> OptionsObject::getKeyKeyRange(const String& key) const in getKeyKeyRange()
|