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

/external/webkit/Source/WebCore/storage/
H A DIDBLevelDBBackingStore.cpp1576 const Vector<char> stopKey = ObjectStoreMetaDataKey::encode(databaseId, INT64_MAX, 0); local
1579 for (it->seek(startKey); it->isValid() && compareKeys(it->key(), stopKey) < 0; it->next()) {
1834 const Vector<char> stopKey = KeyPrefix(databaseId, objectStoreId + 1, 0).encode(); local
1836 deleteRange(m_db.get(), startKey, stopKey);
1854 const Vector<char> stopKey = ObjectStoreDataKey::encode(databaseId, objectStoreId, maxIDBKey()); local
1862 for (it->seek(startKey); it->isValid() && compareKeys(it->key(), stopKey) < 0; it->next()) {
1901 const Vector<char> stopKey = ObjectStoreDataKey::encode(databaseId, objectStoreId, maxIDBKey()); local
1904 for (it->seek(startKey); it->isValid() && compareKeys(it->key(), stopKey) < 0; it->next()) {
1930 const Vector<char> stopKey = IndexMetaDataKey::encode(databaseId, objectStoreId + 1, 0, 0); local
1933 for (it->seek(startKey); it->isValid() && compareKeys(it->key(), stopKey) <
1970 const Vector<char> stopKey = IndexFreeListKey::encode(databaseId, objectStoreId, INT64_MAX); local
2482 Vector<char> startKey, stopKey; local
2520 Vector<char> startKey, stopKey; local
2560 Vector<char> startKey, stopKey; local
[all...]

Completed in 100 milliseconds