Home | History | Annotate | Download | only in shared

Lines Matching refs:length

18  * A range, annotated with metadata, that is represented as an offset and a length. Comparison is
29 * The length of the range.
31 private final long length;
41 * @param length the length of the range
44 public TypedRange(long offset, long length, T metadata) {
46 this.length = length;
52 return "offset " + offset + ", length " + length + ", metadata " + metadata;
64 * Returns the length of the range.
68 return length;
83 result = prime * result + (int) (length ^ (length >>> 32));
95 if (length != other.length) return false;