Home | History | Annotate | Download | only in zip

Lines Matching refs:start

39      * Comparator that compares entries by their start date.
53 private final long start;
69 * @param start the start of the entry
73 private FileUseMapEntry(long start, long end, @Nullable T store) {
74 Preconditions.checkArgument(start >= 0, "start < 0");
75 Preconditions.checkArgument(end > start, "end <= start");
77 this.start = start;
85 * @param start the start of the entry
89 public static FileUseMapEntry<Object> makeFree(long start, long end) {
90 return new FileUseMapEntry<>(start, end, null);
96 * @param start the start of the entry
102 public static <T> FileUseMapEntry<T> makeUsed(long start, long end, @Nonnull T store) {
104 return new FileUseMapEntry<>(start, end, store);
114 return start;
132 return end - start;
157 .add("start", start)