Home | History | Annotate | Download | only in util

Lines Matching refs:end

135      * bytes at the end).
166 int end = writeAt + 1;
169 ensureCapacity(end);
170 } else if (end > data.length) {
176 cursor = end;
183 int end = writeAt + 2;
186 ensureCapacity(end);
187 } else if (end > data.length) {
194 cursor = end;
201 int end = writeAt + 4;
204 ensureCapacity(end);
205 } else if (end > data.length) {
214 cursor = end;
221 int end = writeAt + 8;
224 ensureCapacity(end);
225 } else if (end > data.length) {
242 cursor = end;
272 int end = writeAt + blen;
275 ensureCapacity(end);
276 } else if (end > data.length) {
282 cursor = end;
289 int end = writeAt + length;
293 if (((offset | length | end) < 0) || (bytesEnd > bytes.length)) {
296 offset + "..!" + end);
300 ensureCapacity(end);
301 } else if (end > data.length) {
307 cursor = end;
323 int end = cursor + count;
326 ensureCapacity(end);
327 } else if (end > data.length) {
335 Arrays.fill(data, cursor, end, (byte) 0);
337 cursor = end;
349 int end = (cursor + mask) & ~mask;
352 ensureCapacity(end);
353 } else if (end > data.length) {
361 Arrays.fill(data, cursor, end, (byte) 0);
363 cursor = end;
509 int end;
514 end = start;
519 end = a.getEnd();
524 left.write(Hex.dump(data, start, end - start, start, hexCols, 6));
527 leftAt = end;
531 // There is unannotated output at the end.
537 // There are zero-byte annotations at the end.
547 * end of the instance.
550 throw new IndexOutOfBoundsException("attempt to write past the end");
575 * {@code >= 0;} end of annotated range (exclusive);
578 private int end;
587 * @param end {@code >= start;} end of annotated range (exclusive) or
591 public Annotation(int start, int end, String text) {
593 this.end = end;
608 * Sets the end as given, but only if the instance is unclosed;
611 * @param end {@code >= start;} the end
613 public void setEndIfUnset(int end) {
614 if (this.end == Integer.MAX_VALUE) {
615 this.end = end;
620 * Sets the end as given.
622 * @param end {@code >= start;} the end
624 public void setEnd(int end) {
625 this.end = end;
638 * Gets the end.
640 * @return the end
643 return end;