Searched refs:patch (Results 1 - 10 of 10) sorted by relevance

/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DPath.java134 public List patch() method in class:Path
139 return patch(false);
152 public List patch(boolean annotate) method in class:Path
157 return patch(new Lines(), annotate);
171 public List patch(List lines) method in class:Path
176 return patch(lines, false);
191 public List patch(List lines, boolean annotate) method in class:Path
206 n.patch(lines, annotate);
225 n.patch(lines, false);
H A DDeltaTextLine.java7 public void patch(Node root, Node prev, List lines); method in interface:DeltaTextLine
H A DDeltaText.java38 void patch(List lines) method in class:DeltaText
43 { ((DeltaTextLine)deltaStack.pop()).patch(root, prev, lines); }
H A DDeltaAddTextLine.java21 public void patch(Node root, Node prev, List lines) method in class:DeltaAddTextLine
H A DDeltaDelTextLine.java16 public void patch(Node root, Node prev, List lines) method in class:DeltaDelTextLine
H A DNode.java521 public void patch(List original) method in class:Node
525 patch(original, false);
538 public void patch(List original, boolean annotate) method in class:Node
620 dt.patch(original);
H A DArchive.java947 //path.patch(lines, annotate);
1071 // Object[] oldText = path.patch().toArray();
1072 Lines die = (Lines) path.patch();
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/diff/
H A DRevision.java155 * @param src the text to patch, which the method doesn't change.
159 public Object[] patch(Object[] src) throws PatchFailedException method in class:Revision
169 * @param target the text to patch.
178 delta.patch(target);
H A DDelta.java157 * Verifies that this delta can be used to patch the given text.
158 * @param target the text to patch.
159 * @throws PatchFailedException if the patch cannot be applied.
165 * Applies this delta as a patch to the given text.
166 * @param target the text to patch.
167 * @throws PatchFailedException if the patch cannot be applied.
169 public final void patch(List target) method in class:Delta
184 * Applies this delta as a patch to the given text.
185 * @param target the text to patch.
186 * @throws PatchFailedException if the patch canno
[all...]
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/tools/
H A DJDiff.java119 Object[] reco = r.patch(orig);

Completed in 17 milliseconds