Home | History | Annotate | Download | only in analysis

Lines Matching refs:lines

24 	private LineImpl[] lines;
26 /** first line number in {@link #lines} */
39 lines = null;
44 * Make sure that the internal buffer can keep lines from first to last.
57 if (lines == null) {
59 lines = new LineImpl[last - first + 1];
64 if (newLength > lines.length) {
66 System.arraycopy(lines, 0, newLines, offset - newFirst,
67 lines.length);
69 lines = newLines;
129 lines[line - offset] = l.increment(instructions, branches);
158 return lines == null ? UNKNOWN_LINE : (offset + lines.length - 1);
162 if (lines == null || nr < getFirstLine() || nr > getLastLine()) {
165 final LineImpl line = lines[nr - offset];