Searched defs:original (Results 1 - 5 of 5) sorted by relevance

/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DTrunkNode.java173 * @param original Where to add the patch to.
176 protected void patch0(List original, boolean annotate) argument
183 original.add(new Line(this, getText()[it]));
187 void newpatch0(List original, Node root) argument
191 original.add(new Line(root, text[i]));
H A DNode.java516 * @param original the text to be patched
521 public void patch(List original) argument
525 patch(original, false);
530 * @param original the text to be patched
538 public void patch(List original, boolean annotate) argument
578 revision.applyTo(original);
582 void newpatch(List original, boolean annotate, Node root) throws InvalidFileFormatException argument
620 dt.patch(original);
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/diff/
H A DDelta.java85 protected Chunk original; field in class:Delta
109 * original and revised text respectively.
110 * @param orig the chunk in the original text.
138 * Creates a delta object with the given chunks from the original
147 * Initializaes the delta with the given chunks from the original
152 original = orig;
197 original.rangeString(s);
201 original.toString(s, "> ", "\n");
227 * Accessor method to return the chunk representing the original
230 * @return the original sequenc
[all...]
H A DDiff.java109 /** The original sequence. */
118 * @param the original text that will be compared
120 public Diff(Object[] original) argument
122 this(original, null);
128 * @param o the original text which will be compared against
131 public Diff(Object[] original, DiffAlgorithm algorithm) argument
133 if (original == null)
138 this.orig = original;
151 * compute the difference between an original and a revision.
153 * @param orig the original
[all...]
/opengrok/src/org/opensolaris/opengrok/web/
H A DProjectHelper.java188 * Filters and saves the original set of projects into request's attribute.
191 * @param original original set
195 private Set<Project> cacheProjects(String name, Set<Project> original) { argument
198 p = filterProjects(original);
205 * Filters and saves the original set of groups into request's attribute.
208 * @param original original set
212 private Set<Group> cacheGroups(String name, Set<Group> original) { argument
215 p = filterGroups(original);
[all...]

Completed in 19 milliseconds