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

/external/webkit/Source/WebCore/storage/
H A DIDBSQLiteBackingStore.cpp834 class IndexCursorImpl : public CursorImplCommon { class in namespace:WebCore::__anon14729
836 IndexCursorImpl(SQLiteDatabase& sqliteDatabase, String query, bool uniquenessConstraint, bool iterateForward) function in class:WebCore::__anon14729::IndexCursorImpl
854 void IndexCursorImpl::loadCurrentRow()
862 bool IndexCursorImpl::currentRowExists()
973 RefPtr<IndexCursorImpl> cursor = adoptRef(new IndexCursorImpl(m_db, sql, direction == IDBCursor::NEXT_NO_DUPLICATE || direction == IDBCursor::PREV_NO_DUPLICATE,
H A DIDBLevelDBBackingStore.cpp136 // IndexCursorImpl::loadCurrentRow, and IndexKeyCursorImpl::loadCurrentRow).
2387 class IndexCursorImpl : public CursorImplCommon { class in namespace:WebCore::__anon14725
2389 static PassRefPtr<IndexCursorImpl> create(LevelDBDatabase* db, const Vector<char>& lowKey, bool lowOpen, const Vector<char>& highKey, bool highOpen, bool forward)
2391 return adoptRef(new IndexCursorImpl(db, lowKey, lowOpen, highKey, highOpen, forward));
2402 IndexCursorImpl(LevelDBDatabase* db, const Vector<char>& lowKey, bool lowOpen, const Vector<char>& highKey, bool highOpen, bool forward) function in class:WebCore::__anon14725::IndexCursorImpl
2412 bool IndexCursorImpl::loadCurrentRow()
2586 RefPtr<IndexCursorImpl> cursor = IndexCursorImpl::create(m_db.get(), startKey, lowerOpen, stopKey, upperOpen, forward);

Completed in 62 milliseconds