Searched defs:lines (Results 1 - 9 of 9) sorted by relevance

/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DDeltaAddTextLine.java21 public void patch(Node root, Node prev, List lines) argument
25 lines.add(atLine+i, new Line(root, rcsText[rcsTextOffset+i]));
30 public void patchAnnotate(Node root, Node prev, List lines) argument
33 { lines.add(atLine, null); }
H A DDeltaDelTextLine.java16 public void patch(Node root, Node prev, List lines) argument
19 { lines.remove(atLine); }
22 public void patchAnnotate(Node root, Node prev, List lines) argument
26 Line l = (Line) lines.get(atLine);
31 lines.remove(atLine);
H A DDeltaText.java19 * @param root Added lines will be annotated to root revision.
20 * @param prev Deleted lines will be annotated to prev revision.
38 void patch(List lines) argument
43 { ((DeltaTextLine)deltaStack.pop()).patch(root, prev, lines); }
48 { ((DeltaTextLine)deltaStack.pop()).patchAnnotate(root, prev, lines); }
H A DDeltaTextLine.java7 public void patch(Node root, Node prev, List lines); argument
9 public void patchAnnotate(Node root, Node prev, List lines); argument
H A DPath.java165 * @param lines The list to where the text must be added and the
171 public List patch(List lines) argument
176 return patch(lines, false);
184 * @param lines The list to where the text must be added and the
191 public List patch(List lines, boolean annotate) argument
200 head.patch0(lines, annotate);
206 n.patch(lines, annotate);
208 return lines;
211 public List newpatch(List lines, boolean annotate) argument
220 head.patch0(lines, fals
[all...]
H A DNode.java757 * Return a list with the lines of the node's text.
766 * Return a list with a subset of the lines of the node's text.
777 * Add a subset of the lines of the node's text to the given list.
780 public List getTextLines(List lines) argument
782 return getTextLines(lines, 0, text.length);
786 * Add a subset of the lines of the node's text to the given list.
791 public List getTextLines(List lines, int from, int to) argument
795 lines.add(new Line(deltaRevision(), text[i]));
797 return lines;
/opengrok/test/org/opensolaris/opengrok/search/context/
H A DContextTest.java353 * Test that valid HTML is generated for a match that spans multiple lines.
367 // Search for a multi-token phrase that spans multiple lines in the
400 * Verify that the matching lines are shown in their original form and not
455 * @param lines the expected line numbers in the hit list
458 private void bug17582(QueryBuilder builder, int[] lines, String[] tags) argument
460 assertEquals(lines.length, tags.length);
469 assertEquals(lines.length != 0,
471 assertEquals("Unexpected number of hits", lines.length, hits.size());
472 for (int i = 0; i < lines.length; i++) {
473 assertEquals(Integer.toString(lines[
[all...]
/opengrok/src/org/opensolaris/opengrok/history/
H A DAnnotation.java52 private final List<Line> lines = new ArrayList<Line>(); field in class:Annotation
72 return lines.get(line-1).revision;
85 for (Iterator<Line> it = this.lines.iterator(); it.hasNext();) {
101 return lines.get(line-1).author;
115 return lines.get(line-1).enabled;
122 * Returns the size of the file (number of lines).
124 * @return number of lines
127 return lines.size();
157 lines.add(line);
227 for (Line line : lines) {
[all...]
/opengrok/.mvn/wrapper/
H A Dmaven-wrapper.jarorg/apache/maven/wrapper/BootstrapMainStarter.class BootstrapMainStarter.java package org.apache.maven.wrapper public ...

Completed in 18 milliseconds