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

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DRefSortedMap.java211 public SortedMap<K, V> subMap(K startKey, K endKey) { argument
212 if (!isInRange(startKey)) {
218 return new SubMap(true, startKey, true, endKey);
290 public SortedMap<K, V> subMap(K startKey, K endKey) { argument
291 return new SubMap(true, startKey, true, endKey);
/external/webkit/Source/WebCore/storage/
H A DIDBLevelDBBackingStore.cpp1575 const Vector<char> startKey = ObjectStoreMetaDataKey::encode(databaseId, 1, 0); local
1579 for (it->seek(startKey); it->isValid() && compareKeys(it->key(), stopKey) < 0; it->next()) {
1833 const Vector<char> startKey = KeyPrefix(databaseId, objectStoreId, 0).encode(); local
1836 deleteRange(m_db.get(), startKey, stopKey);
1853 const Vector<char> startKey = ObjectStoreDataKey::encode(databaseId, objectStoreId, minIDBKey()); local
1862 for (it->seek(startKey); it->isValid() && compareKeys(it->key(), stopKey) < 0; it->next()) {
1900 const Vector<char> startKey = ObjectStoreDataKey::encode(databaseId, objectStoreId, minIDBKey()); local
1904 for (it->seek(startKey); it->isValid() && compareKeys(it->key(), stopKey) < 0; it->next()) {
1929 const Vector<char> startKey = IndexMetaDataKey::encode(databaseId, objectStoreId, 0, 0); local
1933 for (it->seek(startKey); i
1969 const Vector<char> startKey = IndexFreeListKey::encode(databaseId, objectStoreId, 0); local
2482 Vector<char> startKey, stopKey; local
2520 Vector<char> startKey, stopKey; local
2560 Vector<char> startKey, stopKey; local
[all...]

Completed in 84 milliseconds