Lines Matching defs:end

131      * bytes at the end).
159 int end = writeAt + 1;
162 ensureCapacity(end);
163 } else if (end > data.length) {
169 cursor = end;
175 int end = writeAt + 2;
178 ensureCapacity(end);
179 } else if (end > data.length) {
186 cursor = end;
192 int end = writeAt + 4;
195 ensureCapacity(end);
196 } else if (end > data.length) {
205 cursor = end;
211 int end = writeAt + 8;
214 ensureCapacity(end);
215 } else if (end > data.length) {
232 cursor = end;
259 int end = writeAt + blen;
262 ensureCapacity(end);
263 } else if (end > data.length) {
269 cursor = end;
275 int end = writeAt + length;
279 if (((offset | length | end) < 0) || (bytesEnd > bytes.length)) {
282 offset + "..!" + end);
286 ensureCapacity(end);
287 } else if (end > data.length) {
293 cursor = end;
307 int end = cursor + count;
310 ensureCapacity(end);
311 } else if (end > data.length) {
321 cursor = end;
332 int end = (cursor + mask) & ~mask;
335 ensureCapacity(end);
336 } else if (end > data.length) {
346 cursor = end;
486 int end;
491 end = start;
496 end = a.getEnd();
501 left.write(Hex.dump(data, start, end - start, start, hexCols, 6));
504 leftAt = end;
508 // There is unannotated output at the end.
514 // There are zero-byte annotations at the end.
524 * end of the instance.
527 throw new IndexOutOfBoundsException("attempt to write past the end");
552 * {@code >= 0;} end of annotated range (exclusive);
555 private int end;
564 * @param end {@code >= start;} end of annotated range (exclusive) or
568 public Annotation(int start, int end, String text) {
570 this.end = end;
585 * Sets the end as given, but only if the instance is unclosed;
588 * @param end {@code >= start;} the end
590 public void setEndIfUnset(int end) {
591 if (this.end == Integer.MAX_VALUE) {
592 this.end = end;
597 * Sets the end as given.
599 * @param end {@code >= start;} the end
601 public void setEnd(int end) {
602 this.end = end;
615 * Gets the end.
617 * @return the end
620 return end;