• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/collections/

Lines Matching defs:range

35  * calling bindings, constraining access to a key range, etc.</p>
44 KeyRange range;
67 * the secondary key used as the "single key" range. dupRange will be set
68 * as the range of the primary key values if subRange is subsequently
76 * Creates a view for a given database and bindings. The initial key range
113 range = new KeyRange(dbConfig.getBtreeComparator());
189 * Return a new value-set view for single key range.
197 * @throws KeyRangeException if the specified range is not within the
198 * current range.
207 KeyRange singleKeyRange = subRange(range, singleKey);
209 view.range = singleKeyRange;
214 * Return a new value-set view for key range, optionally changing
243 view.range = subRange(view.range, secondaryKey);
244 view.dupsKey = view.range.getSingleKey();
271 * Sets this view's range to a subrange with the given parameters.
287 range = useRange;
292 * Returns the key thang for a single key range, or null if a single key
293 * range is not used.
297 return range.getSingleKey();
352 if (!range.check(keyThang)) {
354 "assigned key out of range");
371 if (status == OperationStatus.SUCCESS && !range.check(keyThang)) {
374 "appended record number out of range");
393 * Deletes all records in the current range.
487 * Populates the key entry and returns whether the key is within range.
606 * Intersects the given key and the current range.
615 * Intersects the given range and the current range.
639 * Returns the range to use for sub-ranges. Returns range if this is not a
656 return range;
661 * Given a key object, make a key entry that can be used in a range.