Home
last modified time | relevance | path

Searched refs:IDBCursor (Results 1 – 25 of 37) sorted by relevance

12

/external/webkit/Source/WebCore/storage/
DIDBCursor.cpp42 PassRefPtr<IDBCursor> IDBCursor::create(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* … in create()
44 return adoptRef(new IDBCursor(backend, request, source, transaction)); in create()
47 IDBCursor::IDBCursor(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* request, IDBAny* so… in IDBCursor() function in WebCore::IDBCursor
59 IDBCursor::~IDBCursor() in ~IDBCursor()
63 unsigned short IDBCursor::direction() const in direction()
68 PassRefPtr<IDBKey> IDBCursor::key() const in key()
73 PassRefPtr<IDBKey> IDBCursor::primaryKey() const in primaryKey()
78 PassRefPtr<SerializedScriptValue> IDBCursor::value() const in value()
83 IDBAny* IDBCursor::source() const in source()
88 PassRefPtr<IDBRequest> IDBCursor::update(ScriptExecutionContext* context, PassRefPtr<SerializedScri… in update()
[all …]
DIDBIndex.cpp42 static const unsigned short defaultDirection = IDBCursor::NEXT;
60 …if (direction != IDBCursor::NEXT && direction != IDBCursor::NEXT_NO_DUPLICATE && direction != IDBC… in openCursor()
78 …if (direction != IDBCursor::NEXT && direction != IDBCursor::NEXT_NO_DUPLICATE && direction != IDBC… in openKeyCursor()
DIDBCursor.h47 class IDBCursor : public RefCounted<IDBCursor> {
55 …static PassRefPtr<IDBCursor> create(PassRefPtr<IDBCursorBackendInterface>, IDBRequest*, IDBAny* so…
56 virtual ~IDBCursor();
73 IDBCursor(PassRefPtr<IDBCursorBackendInterface>, IDBRequest*, IDBAny* source, IDBTransaction*);
DIDBSQLiteBackingStore.cpp876 …ctStoreCursor(int64_t, int64_t objectStoreId, const IDBKeyRange* range, IDBCursor::Direction direc… in openObjectStoreCursor()
888 if (direction == IDBCursor::NEXT || direction == IDBCursor::NEXT_NO_DUPLICATE) in openObjectStoreCursor()
893 …ew ObjectStoreCursorImpl(m_db, sql, direction == IDBCursor::NEXT_NO_DUPLICATE || direction == IDBC… in openObjectStoreCursor()
894 … direction == IDBCursor::NEXT_NO_DUPLICATE || direction == IDBCursor::NEXT)); in openObjectStoreCursor()
913 …xKeyCursor(int64_t, int64_t, int64_t indexId, const IDBKeyRange* range, IDBCursor::Direction direc… in openIndexKeyCursor()
928 if (direction == IDBCursor::NEXT || direction == IDBCursor::NEXT_NO_DUPLICATE) in openIndexKeyCursor()
933 …f(new IndexKeyCursorImpl(m_db, sql, direction == IDBCursor::NEXT_NO_DUPLICATE || direction == IDBC… in openIndexKeyCursor()
934 … direction == IDBCursor::NEXT_NO_DUPLICATE || direction == IDBCursor::NEXT)); in openIndexKeyCursor()
953 …ndexCursor(int64_t, int64_t, int64_t indexId, const IDBKeyRange* range, IDBCursor::Direction direc… in openIndexCursor()
968 if (direction == IDBCursor::NEXT || direction == IDBCursor::NEXT_NO_DUPLICATE) in openIndexCursor()
[all …]
DIDBAny.h37 class IDBCursor; variable
83 PassRefPtr<IDBCursor> idbCursor();
95 void set(PassRefPtr<IDBCursor>);
111 RefPtr<IDBCursor> m_idbCursor;
DIDBObjectStore.cpp43 static const unsigned short defaultDirection = IDBCursor::NEXT;
153 …if (direction != IDBCursor::NEXT && direction != IDBCursor::NEXT_NO_DUPLICATE && direction != IDBC… in openCursor()
DIDBCursorBackendImpl.h51 …DBCursorBackendImpl> create(PassRefPtr<IDBBackingStore::Cursor> cursor, IDBCursor::Direction direc… in create()
66 …IDBCursorBackendImpl(PassRefPtr<IDBBackingStore::Cursor>, IDBCursor::Direction, CursorType, IDBTra…
71 IDBCursor::Direction m_direction;
DIDBSQLiteBackingStore.h65 …ctStoreCursor(int64_t databaseId, int64_t objectStoreId, const IDBKeyRange*, IDBCursor::Direction);
66 …64_t databaseId, int64_t objectStoreId, int64_t indexId, const IDBKeyRange*, IDBCursor::Direction);
67 …64_t databaseId, int64_t objectStoreId, int64_t indexId, const IDBKeyRange*, IDBCursor::Direction);
DIDBLevelDBBackingStore.h70 …ctStoreCursor(int64_t databaseId, int64_t objectStoreId, const IDBKeyRange*, IDBCursor::Direction);
71 …64_t databaseId, int64_t objectStoreId, int64_t indexId, const IDBKeyRange*, IDBCursor::Direction);
72 …64_t databaseId, int64_t objectStoreId, int64_t indexId, const IDBKeyRange*, IDBCursor::Direction);
DIDBBackingStore.h97 …oreCursor(int64_t databaseId, int64_t objectStoreId, const IDBKeyRange*, IDBCursor::Direction) = 0;
98 … databaseId, int64_t objectStoreId, int64_t indexId, const IDBKeyRange*, IDBCursor::Direction) = 0;
99 … databaseId, int64_t objectStoreId, int64_t indexId, const IDBKeyRange*, IDBCursor::Direction) = 0;
DIDBIndex.h58 …yRange> keyRange, ExceptionCode& ec) { return openCursor(context, keyRange, IDBCursor::NEXT, ec); } in openCursor()
62 …nge> keyRange, ExceptionCode& ec) { return openKeyCursor(context, keyRange, IDBCursor::NEXT, ec); } in openKeyCursor()
DIDBAny.cpp61 PassRefPtr<IDBCursor> IDBAny::idbCursor() in idbCursor()
129 void IDBAny::set(PassRefPtr<IDBCursor> value) in set()
DIDBCursorWithValue.h35 class IDBCursorWithValue : public IDBCursor {
DIDBCursorWithValue.cpp42 : IDBCursor(backend, request, source, transaction) in IDBCursorWithValue()
DIDBIndexBackendImpl.cpp73 IDBCursor::Direction direction = static_cast<IDBCursor::Direction>(untypedDirection); in openCursorInternal()
DIDBCursorBackendImpl.cpp44 IDBCursorBackendImpl::IDBCursorBackendImpl(PassRefPtr<IDBBackingStore::Cursor> cursor, IDBCursor::D… in IDBCursorBackendImpl()
DIDBObjectStore.h66 …Range> keyRange, ExceptionCode& ec) { return openCursor(context, keyRange, IDBCursor::NEXT, ec); } in openCursor()
DIDBCursorWithValue.idl30 ] IDBCursorWithValue : IDBCursor {
DIDBCursor.idl30 ] IDBCursor {
DIDBLevelDBBackingStore.cpp2475 …or(int64_t databaseId, int64_t objectStoreId, const IDBKeyRange* range, IDBCursor::Direction direc… in openObjectStoreCursor()
2479 bool forward = (direction == IDBCursor::NEXT_NO_DUPLICATE || direction == IDBCursor::NEXT); in openObjectStoreCursor()
2513 …seId, int64_t objectStoreId, int64_t indexId, const IDBKeyRange* range, IDBCursor::Direction direc… in openIndexKeyCursor()
2517 bool forward = (direction == IDBCursor::NEXT_NO_DUPLICATE || direction == IDBCursor::NEXT); in openIndexKeyCursor()
2553 …seId, int64_t objectStoreId, int64_t indexId, const IDBKeyRange* range, IDBCursor::Direction direc… in openIndexCursor()
2557 bool forward = (direction == IDBCursor::NEXT_NO_DUPLICATE || direction == IDBCursor::NEXT); in openIndexCursor()
DIDBObjectStoreBackendImpl.cpp464 IDBCursor::Direction direction = static_cast<IDBCursor::Direction>(tmpDirection); in openCursorInternal()
DIDBRequest.cpp191 … m_result = IDBAny::create(IDBCursor::create(backend, this, m_source.get(), m_transaction.get())); in onSuccess()
/external/webkit/LayoutTests/storage/indexeddb/
Dcursor-continue-expected.txt1 Test IndexedDB's IDBCursor.continue() with a key parameter.
/external/webkit/Source/WebCore/
DDerivedSources.make282 IDBCursor \
DCodeGenerators.pri352 storage/IDBCursor.idl \

12