Home | History | Annotate | Download | only in plaintext

Lines Matching refs:EQUAL

120    *  Diff(Operation.EQUAL, " world.")}
124 DELETE, INSERT, EQUAL
162 diffs.add(new Diff(Operation.EQUAL, text1));
183 diffs.addFirst(new Diff(Operation.EQUAL, commonprefix));
186 diffs.addLast(new Diff(Operation.EQUAL, commonsuffix));
228 diffs.add(new Diff(Operation.EQUAL, shorttext));
248 diffs.add(new Diff(Operation.EQUAL, mid_common));
282 diffs.add(new Diff(Operation.EQUAL, ""));
299 case EQUAL:
576 if (last_op == Operation.EQUAL) {
579 path.addFirst(new Diff(Operation.EQUAL, text1.substring(x, x + 1)));
581 last_op = Operation.EQUAL;
630 if (last_op == Operation.EQUAL) {
633 path.addLast(new Diff(Operation.EQUAL,
636 last_op = Operation.EQUAL;
793 String lastequality = null; // Always equal to equalities.lastElement().text
801 if (thisDiff.operation == Operation.EQUAL) {
877 if (prevDiff.operation == Operation.EQUAL &&
878 nextDiff.operation == Operation.EQUAL) {
1004 String lastequality = null; // Always equal to equalities.lastElement().text
1017 if (thisDiff.operation == Operation.EQUAL) {
1108 diffs.add(new Diff(Operation.EQUAL, "")); // Add a dummy entry at the end.
1129 case EQUAL:
1147 assert thisDiff.operation == Operation.EQUAL
1152 pointer.add(new Diff(Operation.EQUAL,
1215 if (prevDiff.operation == Operation.EQUAL &&
1216 nextDiff.operation == Operation.EQUAL) {
1313 case EQUAL:
1376 case EQUAL:
1413 case EQUAL:
1488 diffs.add(new Diff(Operation.EQUAL, text));
1716 patch.diffs.addFirst(new Diff(Operation.EQUAL, prefix));
1722 patch.diffs.addLast(new Diff(Operation.EQUAL, suffix));
1811 if (patch.diffs.isEmpty() && aDiff.operation != Operation.EQUAL) {
1830 case EQUAL:
1980 if (aDiff.operation != Operation.EQUAL) {
2031 if (diffs.isEmpty() || diffs.getFirst().operation != Operation.EQUAL) {
2033 diffs.addFirst(new Diff(Operation.EQUAL, nullPadding));
2053 if (diffs.isEmpty() || diffs.getLast().operation != Operation.EQUAL) {
2055 diffs.addLast(new Diff(Operation.EQUAL, nullPadding));
2105 patch.diffs.add(new Diff(Operation.EQUAL, precontext));
2118 && patch.diffs.getFirst().operation == Operation.EQUAL
2132 if (diff_type == Operation.EQUAL) {
2161 && patch.diffs.getLast().operation == Operation.EQUAL) {
2164 patch.diffs.add(new Diff(Operation.EQUAL, postcontext));
2270 patch.diffs.add(new Diff(Operation.EQUAL, line));
2291 * One of: INSERT, DELETE or EQUAL.
2301 * @param operation One of INSERT, DELETE or EQUAL.
2390 case EQUAL: