Searched refs:diff_main (Results 1 - 2 of 2) sorted by relevance

/external/google-diff-match-patch/name/fraser/neil/plaintext/
H A Ddiff_match_patch_test.java512 assertEquals("diff_main: Null case.", diffs, dmp.diff_main("abc", "abc", false));
515 assertEquals("diff_main: Simple insertion.", diffs, dmp.diff_main("abc", "ab123c", false));
518 assertEquals("diff_main: Simple deletion.", diffs, dmp.diff_main("a123bc", "abc", false));
521 assertEquals("diff_main: Two insertions.", diffs, dmp.diff_main("abc", "a123b456c", false));
524 assertEquals("diff_main: Two deletions.", diffs, dmp.diff_main("a123b456
[all...]
H A Ddiff_match_patch.java131 * This method allows the 'checklines' of diff_main() to be optional.
137 public LinkedList<Diff> diff_main(String text1, String text2) { method in class:diff_match_patch
138 return diff_main(text1, text2, true);
151 public LinkedList<Diff> diff_main(String text1, String text2, method in class:diff_match_patch
155 throw new IllegalArgumentException("Null inputs. (diff_main)");
244 LinkedList<Diff> diffs_a = diff_main(text1_a, text2_a, checklines);
245 LinkedList<Diff> diffs_b = diff_main(text1_b, text2_b, checklines);
308 for (Diff newDiff : diff_main(text_delete, text_insert, false)) {
1746 LinkedList<Diff> diffs = diff_main(text1, text2, true);
1970 LinkedList<Diff> diffs = diff_main(text
[all...]

Completed in 140 milliseconds