Searched refs:IndexKeyCursorImpl (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/storage/
H A DIDBSQLiteBackingStore.cpp796 class IndexKeyCursorImpl : public CursorImplCommon { class in namespace:WebCore::__anon14729
798 IndexKeyCursorImpl(SQLiteDatabase& sqliteDatabase, String query, bool uniquenessConstraint, bool iterateForward) function in class:WebCore::__anon14729::IndexKeyCursorImpl
815 void IndexKeyCursorImpl::loadCurrentRow()
822 bool IndexKeyCursorImpl::currentRowExists()
933 RefPtr<IndexKeyCursorImpl> cursor = adoptRef(new IndexKeyCursorImpl(m_db, sql, direction == IDBCursor::NEXT_NO_DUPLICATE || direction == IDBCursor::PREV_NO_DUPLICATE,
H A DIDBLevelDBBackingStore.cpp136 // IndexCursorImpl::loadCurrentRow, and IndexKeyCursorImpl::loadCurrentRow).
2324 class IndexKeyCursorImpl : public CursorImplCommon { class in namespace:WebCore::__anon14725
2326 static PassRefPtr<IndexKeyCursorImpl> create(LevelDBDatabase* db, const Vector<char>& lowKey, bool lowOpen, const Vector<char>& highKey, bool highOpen, bool forward)
2328 return adoptRef(new IndexKeyCursorImpl(db, lowKey, lowOpen, highKey, highOpen, forward));
2339 IndexKeyCursorImpl(LevelDBDatabase* db, const Vector<char>& lowKey, bool lowOpen, const Vector<char>& highKey, bool highOpen, bool forward) function in class:WebCore::__anon14725::IndexKeyCursorImpl
2347 bool IndexKeyCursorImpl::loadCurrentRow()
2546 RefPtr<IndexKeyCursorImpl> cursor = IndexKeyCursorImpl::create(m_db.get(), startKey, lowerOpen, stopKey, upperOpen, forward);

Completed in 49 milliseconds