HomeSort by relevance Sort by last modified time
    Searched refs:diff_commonSuffix (Results 1 - 2 of 2) sorted by null

  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch_test.java 64 assertEquals("diff_commonSuffix: Null case.", 0, dmp.diff_commonSuffix("abc", "xyz"));
66 assertEquals("diff_commonSuffix: Non-null case.", 4, dmp.diff_commonSuffix("abcdef1234", "xyz1234"));
68 assertEquals("diff_commonSuffix: Whole case.", 4, dmp.diff_commonSuffix("1234", "xyz1234"));
    [all...]
diff_match_patch.java 173 commonlength = diff_commonSuffix(text1, text2);
685 public int diff_commonSuffix(String text1, String text2) {
763 int suffixLength = diff_commonSuffix(longtext.substring(0, i),
885 commonOffset = diff_commonSuffix(equality1, edit);
    [all...]

Completed in 20 milliseconds