Searched refs:lowerKey (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/Modules/indexeddb/
H A DIDBKeyRangeData.cpp38 result.lowerKey = lowerKey.isolatedCopy();
51 return IDBKeyRange::create(lowerKey.maybeCreateIDBKey(), upperKey.maybeCreateIDBKey(), lowerOpen ? IDBKeyRange::LowerBoundOpen : IDBKeyRange::LowerBoundClosed, upperOpen ? IDBKeyRange::UpperBoundOpen : IDBKeyRange::UpperBoundClosed);
59 return !lowerKey.compare(upperKey);
H A DIDBKeyRangeData.h52 lowerKey = keyRange->lower().get();
66 IDBKeyData lowerKey; member in struct:WebCore::IDBKeyRangeData
/macosx-10.10/WebKit2-7600.1.25/DatabaseProcess/IndexedDB/sqlite/
H A DSQLiteIDBCursor.cpp160 sql = getIndexStatement(!m_keyRange.lowerKey.isNull, m_keyRange.lowerOpen, !m_keyRange.upperKey.isNull, m_keyRange.upperOpen, m_cursorDirection == IndexedDB::CursorDirection::Prev || m_cursorDirection == IndexedDB::CursorDirection::PrevNoDuplicate, m_cursorDirection == IndexedDB::CursorDirection::NextNoDuplicate || m_cursorDirection == IndexedDB::CursorDirection::PrevNoDuplicate);
163 sql = getObjectStoreStatement(!m_keyRange.lowerKey.isNull, m_keyRange.lowerOpen, !m_keyRange.upperKey.isNull, m_keyRange.upperOpen, m_cursorDirection == IndexedDB::CursorDirection::Prev || m_cursorDirection == IndexedDB::CursorDirection::PrevNoDuplicate);
167 m_currentLowerKey = m_keyRange.lowerKey.isNull ? IDBKeyData::minimum() : m_keyRange.lowerKey;
H A DUniqueIDBDatabaseBackingStoreSQLite.cpp991 if (!deleteRecord(*transaction, objectStoreID, keyRangeData.lowerKey)) {
992 LOG_ERROR("Failed to delete record for key '%s'", keyRangeData.lowerKey.loggingString().utf8().data());
/macosx-10.10/WebKit2-7600.1.25/Shared/
H A DWebCoreArgumentCoders.cpp2059 encoder << keyRange.upperKey << keyRange.lowerKey << keyRange.upperOpen << keyRange.lowerOpen;
2073 if (!decoder.decode(keyRange.lowerKey))

Completed in 183 milliseconds