Searched refs:toKey (Results 1 - 21 of 21) sorted by relevance

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/java/src/com/sleepycat/collections/
H A DStoredSortedKeySet.java114 * strictly less than toKey.
120 * @param toKey is the upper bound.
127 public SortedSet<K> headSet(K toKey) { argument
129 return subSet(null, false, toKey, false);
134 * strictly less than toKey, optionally including toKey.
140 * @param toKey is the upper bound.
142 * @param toInclusive is true to include toKey.
149 public SortedSet<K> headSet(K toKey, boolean toInclusive) { argument
151 return subSet(null, false, toKey, toInclusiv
213 subSet(K fromKey, K toKey) argument
240 subSet(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
[all...]
H A DStoredSortedMap.java224 * strictly less than toKey.
230 * @param toKey is the upper bound.
237 public SortedMap<K,V> headMap(K toKey) { argument
239 return subMap(null, false, toKey, false);
244 * strictly less than toKey, optionally including toKey.
250 * @param toKey is the upper bound.
252 * @param toInclusive is true to include toKey.
259 public SortedMap<K,V> headMap(K toKey, boolean toInclusive) { argument
261 return subMap(null, false, toKey, toInclusiv
323 subMap(K fromKey, K toKey) argument
350 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
[all...]
H A DStoredSortedEntrySet.java223 Object toKey = (toMapEntry != null) ? toMapEntry.getKey() : null;
226 view.subView(fromKey, fromInclusive, toKey, toInclusive, null));
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/java/src/com/sleepycat/collections/
H A DStoredSortedKeySet.java114 * strictly less than toKey.
120 * @param toKey is the upper bound.
127 public SortedSet<K> headSet(K toKey) { argument
129 return subSet(null, false, toKey, false);
134 * strictly less than toKey, optionally including toKey.
140 * @param toKey is the upper bound.
142 * @param toInclusive is true to include toKey.
149 public SortedSet<K> headSet(K toKey, boolean toInclusive) { argument
151 return subSet(null, false, toKey, toInclusiv
213 subSet(K fromKey, K toKey) argument
240 subSet(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
[all...]
H A DStoredSortedMap.java224 * strictly less than toKey.
230 * @param toKey is the upper bound.
237 public SortedMap<K,V> headMap(K toKey) { argument
239 return subMap(null, false, toKey, false);
244 * strictly less than toKey, optionally including toKey.
250 * @param toKey is the upper bound.
252 * @param toInclusive is true to include toKey.
259 public SortedMap<K,V> headMap(K toKey, boolean toInclusive) { argument
261 return subMap(null, false, toKey, toInclusiv
323 subMap(K fromKey, K toKey) argument
350 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
[all...]
H A DStoredSortedEntrySet.java223 Object toKey = (toMapEntry != null) ? toMapEntry.getKey() : null;
226 view.subView(fromKey, fromInclusive, toKey, toInclusive, null));
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/java/src/com/sleepycat/collections/
H A DStoredSortedKeySet.java114 * strictly less than toKey.
120 * @param toKey is the upper bound.
127 public SortedSet<K> headSet(K toKey) { argument
129 return subSet(null, false, toKey, false);
134 * strictly less than toKey, optionally including toKey.
140 * @param toKey is the upper bound.
142 * @param toInclusive is true to include toKey.
149 public SortedSet<K> headSet(K toKey, boolean toInclusive) { argument
151 return subSet(null, false, toKey, toInclusiv
213 subSet(K fromKey, K toKey) argument
240 subSet(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
[all...]
H A DStoredSortedMap.java224 * strictly less than toKey.
230 * @param toKey is the upper bound.
237 public SortedMap<K,V> headMap(K toKey) { argument
239 return subMap(null, false, toKey, false);
244 * strictly less than toKey, optionally including toKey.
250 * @param toKey is the upper bound.
252 * @param toInclusive is true to include toKey.
259 public SortedMap<K,V> headMap(K toKey, boolean toInclusive) { argument
261 return subMap(null, false, toKey, toInclusiv
323 subMap(K fromKey, K toKey) argument
350 subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
[all...]
H A DStoredSortedEntrySet.java223 Object toKey = (toMapEntry != null) ? toMapEntry.getKey() : null;
226 view.subView(fromKey, fromInclusive, toKey, toInclusive, null));
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/java/src/com/sleepycat/persist/
H A DBasicIndex.java164 K toKey, boolean toInclusive)
167 return cursor(null, fromKey, fromInclusive, toKey, toInclusive,
174 K toKey,
179 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
184 K toKey, boolean toInclusive)
187 return cursor(null, fromKey, fromInclusive, toKey, toInclusive,
194 K toKey,
199 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
236 K toKey,
248 if (toKey !
163 keys(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
171 keys(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, CursorConfig config) argument
183 entities(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
191 entities(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, CursorConfig config) argument
233 cursor(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, ValueAdapter<V> adapter, CursorConfig config) argument
[all...]
H A DEntityIndex.java765 * @param toKey is the upper bound of the key range, or null if the range
768 * @param toInclusive is true if keys less than or equal to toKey should be
769 * included in the key range, or false if only keys less than toKey should
776 K toKey,
796 * @param toKey is the upper bound of the key range, or null if the range
799 * @param toInclusive is true if keys less than or equal to toKey should be
800 * included in the key range, or false if only keys less than toKey should
812 K toKey,
832 * @param toKey is the upper bound of the key range, or null if the range
835 * @param toInclusive is true if keys less than or equal to toKey shoul
774 keys(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
809 keys(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, CursorConfig config) argument
841 entities(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
875 entities(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, CursorConfig config) argument
[all...]
H A DSubIndex.java217 PK toKey,
221 return cursor(null, fromKey, fromInclusive, toKey, toInclusive,
228 PK toKey,
233 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
239 PK toKey,
243 return cursor(null, fromKey, fromInclusive, toKey, toInclusive,
250 PK toKey,
255 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
292 PK toKey,
304 if (toKey !
215 keys(PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive) argument
225 keys(Transaction txn, PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive, CursorConfig config) argument
237 entities(PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive) argument
247 entities(Transaction txn, PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive, CursorConfig config) argument
289 cursor(Transaction txn, PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive, ValueAdapter<V> adapter, CursorConfig config) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/java/src/com/sleepycat/persist/
H A DBasicIndex.java164 K toKey, boolean toInclusive)
167 return cursor(null, fromKey, fromInclusive, toKey, toInclusive,
174 K toKey,
179 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
184 K toKey, boolean toInclusive)
187 return cursor(null, fromKey, fromInclusive, toKey, toInclusive,
194 K toKey,
199 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
236 K toKey,
248 if (toKey !
163 keys(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
171 keys(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, CursorConfig config) argument
183 entities(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
191 entities(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, CursorConfig config) argument
233 cursor(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, ValueAdapter<V> adapter, CursorConfig config) argument
[all...]
H A DEntityIndex.java765 * @param toKey is the upper bound of the key range, or null if the range
768 * @param toInclusive is true if keys less than or equal to toKey should be
769 * included in the key range, or false if only keys less than toKey should
776 K toKey,
796 * @param toKey is the upper bound of the key range, or null if the range
799 * @param toInclusive is true if keys less than or equal to toKey should be
800 * included in the key range, or false if only keys less than toKey should
812 K toKey,
832 * @param toKey is the upper bound of the key range, or null if the range
835 * @param toInclusive is true if keys less than or equal to toKey shoul
774 keys(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
809 keys(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, CursorConfig config) argument
841 entities(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
875 entities(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, CursorConfig config) argument
[all...]
H A DSubIndex.java217 PK toKey,
221 return cursor(null, fromKey, fromInclusive, toKey, toInclusive,
228 PK toKey,
233 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
239 PK toKey,
243 return cursor(null, fromKey, fromInclusive, toKey, toInclusive,
250 PK toKey,
255 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
292 PK toKey,
304 if (toKey !
215 keys(PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive) argument
225 keys(Transaction txn, PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive, CursorConfig config) argument
237 entities(PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive) argument
247 entities(Transaction txn, PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive, CursorConfig config) argument
289 cursor(Transaction txn, PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive, ValueAdapter<V> adapter, CursorConfig config) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/java/src/com/sleepycat/persist/
H A DBasicIndex.java164 K toKey, boolean toInclusive)
167 return cursor(null, fromKey, fromInclusive, toKey, toInclusive,
174 K toKey,
179 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
184 K toKey, boolean toInclusive)
187 return cursor(null, fromKey, fromInclusive, toKey, toInclusive,
194 K toKey,
199 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
236 K toKey,
248 if (toKey !
163 keys(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
171 keys(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, CursorConfig config) argument
183 entities(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
191 entities(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, CursorConfig config) argument
233 cursor(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, ValueAdapter<V> adapter, CursorConfig config) argument
[all...]
H A DEntityIndex.java765 * @param toKey is the upper bound of the key range, or null if the range
768 * @param toInclusive is true if keys less than or equal to toKey should be
769 * included in the key range, or false if only keys less than toKey should
776 K toKey,
796 * @param toKey is the upper bound of the key range, or null if the range
799 * @param toInclusive is true if keys less than or equal to toKey should be
800 * included in the key range, or false if only keys less than toKey should
812 K toKey,
832 * @param toKey is the upper bound of the key range, or null if the range
835 * @param toInclusive is true if keys less than or equal to toKey shoul
774 keys(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
809 keys(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, CursorConfig config) argument
841 entities(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) argument
875 entities(Transaction txn, K fromKey, boolean fromInclusive, K toKey, boolean toInclusive, CursorConfig config) argument
[all...]
H A DSubIndex.java217 PK toKey,
221 return cursor(null, fromKey, fromInclusive, toKey, toInclusive,
228 PK toKey,
233 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
239 PK toKey,
243 return cursor(null, fromKey, fromInclusive, toKey, toInclusive,
250 PK toKey,
255 return cursor(txn, fromKey, fromInclusive, toKey, toInclusive,
292 PK toKey,
304 if (toKey !
215 keys(PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive) argument
225 keys(Transaction txn, PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive, CursorConfig config) argument
237 entities(PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive) argument
247 entities(Transaction txn, PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive, CursorConfig config) argument
289 cursor(Transaction txn, PK fromKey, boolean fromInclusive, PK toKey, boolean toInclusive, ValueAdapter<V> adapter, CursorConfig config) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/lighttpd-1.4.39/external_file/build/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/lighttpd-1.4.39/external_file/build/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/lighttpd-1.4.39/external_file/build/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 101 milliseconds