OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:diff_cleanupSemanticLossless
(Results
1 - 2
of
2
) sorted by null
/external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch_test.java
210
dmp.
diff_cleanupSemanticLossless
(diffs);
211
assertEquals("
diff_cleanupSemanticLossless
: Null case.", diffList(), diffs);
214
dmp.
diff_cleanupSemanticLossless
(diffs);
215
assertEquals("
diff_cleanupSemanticLossless
: Blank lines.", diffList(new Diff(EQUAL, "AAA\r\n\r\n"), new Diff(INSERT, "BBB\r\nDDD\r\n\r\n"), new Diff(EQUAL, "BBB\r\nEEE")), diffs);
218
dmp.
diff_cleanupSemanticLossless
(diffs);
219
assertEquals("
diff_cleanupSemanticLossless
: Line boundaries.", diffList(new Diff(EQUAL, "AAA\r\n"), new Diff(INSERT, "BBB DDD\r\n"), new Diff(EQUAL, "BBB EEE")), diffs);
222
dmp.
diff_cleanupSemanticLossless
(diffs);
223
assertEquals("
diff_cleanupSemanticLossless
: Word boundaries.", diffList(new Diff(EQUAL, "The "), new Diff(INSERT, "cow and the "), new Diff(EQUAL, "cat.")), diffs);
226
dmp.
diff_cleanupSemanticLossless
(diffs);
227
assertEquals("
diff_cleanupSemanticLossless
: Alphanumeric boundaries.", diffList(new Diff(EQUAL, "The-"), new Diff(INSERT, "cow-and-the-"), ne (…)
[
all
...]
diff_match_patch.java
854
diff_cleanupSemanticLossless
(diffs);
864
public void
diff_cleanupSemanticLossless
(LinkedList<Diff> diffs) {
[
all
...]
Completed in 2959 milliseconds