Home | History | Annotate | Download | only in dumprendertree2

Lines Matching refs:diff_match_patch

19 import name.fraser.neil.plaintext.diff_match_patch;
39 public static LinkedList<diff_match_patch.Diff> splitDiffsOnNewline(
40 LinkedList<diff_match_patch.Diff> diffs) {
41 LinkedList<diff_match_patch.Diff> newDiffs = new LinkedList<diff_match_patch.Diff>();
45 for (diff_match_patch.Diff diff : diffs) {
54 newDiffs.add(new diff_match_patch.Diff(diff.operation, parts[i] + "\n"));
57 newDiffs.add(new diff_match_patch.Diff(diff.operation, parts[lengthMinusOne]));
64 public static void generateExpectedResultLines(LinkedList<diff_match_patch.Diff> diffs,
71 diff_match_patch.Diff diff;
105 public static void generateActualResultLines(LinkedList<diff_match_patch.Diff> diffs,
112 diff_match_patch.Diff diff;
159 public static String processDiff(diff_match_patch.Diff diff, LinkedList<Integer> lineNums,