OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:diff_match_patch
(Results
1 - 6
of
6
) sorted by null
/external/google-diff-match-patch/
Android.mk
5
LOCAL_SRC_FILES := name/fraser/neil/plaintext/
diff_match_patch
.java
9
LOCAL_MODULE :=
diff_match_patch
/frameworks/base/tests/DumpRenderTree2/
Android.mk
25
LOCAL_STATIC_JAVA_LIBRARIES :=
diff_match_patch
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
VisualDiffUtils.java
19
import name.fraser.neil.plaintext.
diff_match_patch
;
39
public static LinkedList<
diff_match_patch
.Diff> splitDiffsOnNewline(
40
LinkedList<
diff_match_patch
.Diff> diffs) {
41
LinkedList<
diff_match_patch
.Diff> newDiffs = new LinkedList<
diff_match_patch
.Diff>();
45
for (
diff_match_patch
.Diff diff : diffs) {
54
newDiffs.add(new
diff_match_patch
.Diff(diff.operation, parts[i] + "\n"));
57
newDiffs.add(new
diff_match_patch
.Diff(diff.operation, parts[lengthMinusOne]));
64
public static void generateExpectedResultLines(LinkedList<
diff_match_patch
.Diff> diffs,
71
diff_match_patch
.Diff diff
[
all
...]
TextResult.java
24
import name.fraser.neil.plaintext.
diff_match_patch
;
199
LinkedList<
diff_match_patch
.Diff> diffs =
200
new
diff_match_patch
().diff_main(mExpectedResult, mActualResult);
/external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch_test.java
2
* Test harness for
diff_match_patch
.java
33
import name.fraser.neil.plaintext.
diff_match_patch
.Diff;
34
import name.fraser.neil.plaintext.
diff_match_patch
.LinesToCharsResult;
35
import name.fraser.neil.plaintext.
diff_match_patch
.Patch;
39
private
diff_match_patch
dmp;
40
private
diff_match_patch
.Operation DELETE =
diff_match_patch
.Operation.DELETE;
41
private
diff_match_patch
.Operation EQUAL =
diff_match_patch
.Operation.EQUAL;
42
private
diff_match_patch
.Operation INSERT = diff_match_patch.Operation.INSERT
[
all
...]
diff_match_patch.java
51
public class
diff_match_patch
{
class
54
// Set these on your
diff_match_patch
instance to override the defaults.
[
all
...]
Completed in 679 milliseconds