Home | History | Annotate | Download | only in util

Lines Matching refs:end

122      * bytes at the end).
150 int end = writeAt + 1;
153 ensureCapacity(end);
154 } else if (end > data.length) {
160 cursor = end;
166 int end = writeAt + 2;
169 ensureCapacity(end);
170 } else if (end > data.length) {
177 cursor = end;
183 int end = writeAt + 4;
186 ensureCapacity(end);
187 } else if (end > data.length) {
196 cursor = end;
202 int end = writeAt + 8;
205 ensureCapacity(end);
206 } else if (end > data.length) {
223 cursor = end;
247 int end = ((value & Integer.MIN_VALUE) == 0) ? 0 : -1;
250 hasMore = (remaining != end)
266 int end = writeAt + blen;
269 ensureCapacity(end);
270 } else if (end > data.length) {
276 cursor = end;
282 int end = writeAt + length;
286 if (((offset | length | end) < 0) || (bytesEnd > bytes.length)) {
289 offset + "..!" + end);
293 ensureCapacity(end);
294 } else if (end > data.length) {
300 cursor = end;
314 int end = cursor + count;
317 ensureCapacity(end);
318 } else if (end > data.length) {
328 cursor = end;
339 int end = (cursor + mask) & ~mask;
342 ensureCapacity(end);
343 } else if (end > data.length) {
353 cursor = end;
493 int end;
498 end = start;
503 end = a.getEnd();
508 left.write(Hex.dump(data, start, end - start, start, hexCols, 6));
511 leftAt = end;
515 // There is unannotated output at the end.
521 // There are zero-byte annotations at the end.
531 * end of the instance.
534 throw new IndexOutOfBoundsException("attempt to write past the end");
559 * {@code >= 0;} end of annotated range (exclusive);
562 private int end;
571 * @param end {@code >= start;} end of annotated range (exclusive) or
575 public Annotation(int start, int end, String text) {
577 this.end = end;
592 * Sets the end as given, but only if the instance is unclosed;
595 * @param end {@code >= start;} the end
597 public void setEndIfUnset(int end) {
598 if (this.end == Integer.MAX_VALUE) {
599 this.end = end;
604 * Sets the end as given.
606 * @param end {@code >= start;} the end
608 public void setEnd(int end) {
609 this.end = end;
622 * Gets the end.
624 * @return the end
627 return end;