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

/external/google-diff-match-patch/name/fraser/neil/plaintext/
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 104 milliseconds