Searched defs:ObjectStoreCursorImpl (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/storage/
H A DIDBSQLiteBackingStore.cpp759 class ObjectStoreCursorImpl : public CursorImplCommon { class in namespace:WebCore::__anon14729
761 ObjectStoreCursorImpl(SQLiteDatabase& sqliteDatabase, String query, bool uniquenessConstraint, bool iterateForward) function in class:WebCore::__anon14729::ObjectStoreCursorImpl
777 void ObjectStoreCursorImpl::loadCurrentRow()
784 bool ObjectStoreCursorImpl::currentRowExists()
893 RefPtr<ObjectStoreCursorImpl> cursor = adoptRef(new ObjectStoreCursorImpl(m_db, sql, direction == IDBCursor::NEXT_NO_DUPLICATE || direction == IDBCursor::PREV_NO_DUPLICATE,
H A DIDBLevelDBBackingStore.cpp2277 class ObjectStoreCursorImpl : public CursorImplCommon { class in namespace:WebCore::__anon14725
2279 static PassRefPtr<ObjectStoreCursorImpl> create(LevelDBDatabase* db, const Vector<char>& lowKey, bool lowOpen, const Vector<char>& highKey, bool highOpen, bool forward)
2281 return adoptRef(new ObjectStoreCursorImpl(db, lowKey, lowOpen, highKey, highOpen, forward));
2291 ObjectStoreCursorImpl(LevelDBDatabase* db, const Vector<char>& lowKey, bool lowOpen, const Vector<char>& highKey, bool highOpen, bool forward) function in class:WebCore::__anon14725::ObjectStoreCursorImpl
2299 bool ObjectStoreCursorImpl::loadCurrentRow()
2506 RefPtr<ObjectStoreCursorImpl> cursor = ObjectStoreCursorImpl::create(m_db.get(), startKey, lowerOpen, stopKey, upperOpen, forward);

Completed in 38 milliseconds