HomeSort by relevance Sort by last modified time
    Searched refs:diffs (Results 1 - 25 of 50) sorted by null

1 2

  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch_test.java 132 LinkedList<Diff> diffs = diffList(new Diff(EQUAL, "\u0001\u0002\u0001"), new Diff(INSERT, "\u0002\u0001\u0002")); local
137 dmp.diff_charsToLines(diffs, tmpVector);
138 assertEquals("diff_charsToLines:", diffList(new Diff(EQUAL, "alpha\nbeta\nalpha\n"), new Diff(INSERT, "beta\nalpha\nbeta\n")), diffs);
155 diffs = diffList(new Diff(DELETE, chars));
156 dmp.diff_charsToLines(diffs, tmpVector);
157 assertEquals("diff_charsToLines: More than 256.", diffList(new Diff(DELETE, lines)), diffs);
162 LinkedList<Diff> diffs = diffList(); local
163 dmp.diff_cleanupMerge(diffs);
164 assertEquals("diff_cleanupMerge: Null case.", diffList(), diffs);
166 diffs = diffList(new Diff(EQUAL, "a"), new Diff(DELETE, "b"), new Diff(INSERT, "c"))
209 LinkedList<Diff> diffs = diffList(); local
240 LinkedList<Diff> diffs = diffList(); local
268 LinkedList<Diff> diffs = diffList(); local
297 LinkedList<Diff> diffs = diffList(new Diff(EQUAL, "a\\n"), new Diff(DELETE, "<B>b<\/B>"), new Diff(INSERT, "c&d")); local
303 LinkedList<Diff> diffs = diffList(new Diff(EQUAL, "jump"), new Diff(DELETE, "s"), new Diff(INSERT, "ed"), new Diff(EQUAL, " over "), new Diff(DELETE, "the"), new Diff(INSERT, "a"), new Diff(EQUAL, " lazy")); local
310 LinkedList<Diff> diffs = diffList(new Diff(EQUAL, "jump"), new Diff(DELETE, "s"), new Diff(INSERT, "ed"), new Diff(EQUAL, " over "), new Diff(DELETE, "the"), new Diff(INSERT, "a"), new Diff(EQUAL, " lazy"), new Diff(INSERT, "old dog")); local
368 LinkedList<Diff> diffs = diffList(new Diff(DELETE, "a"), new Diff(INSERT, "1234"), new Diff(EQUAL, "xyz")); local
376 LinkedList<Diff> diffs = diffList(new Diff(DELETE, "abc"), new Diff(INSERT, "1234"), new Diff(EQUAL, "xyz")); local
437 LinkedList<Diff> diffs = diffList(new Diff(INSERT, "W"), new Diff(DELETE, "A"), new Diff(EQUAL, "1"), new Diff(DELETE, "B"), new Diff(EQUAL, "2"), new Diff(INSERT, "X"), new Diff(DELETE, "C"), new Diff(EQUAL, "3"), new Diff(DELETE, "D")); local
511 LinkedList<Diff> diffs = diffList(new Diff(EQUAL, "abc")); local
753 LinkedList<Diff> diffs = dmp.diff_main(text1, text2, false); local
    [all...]
diff_match_patch.java 159 LinkedList<Diff> diffs; local
161 diffs = new LinkedList<Diff>();
162 diffs.add(new Diff(Operation.EQUAL, text1));
163 return diffs;
179 diffs = diff_compute(text1, text2, checklines);
183 diffs.addFirst(new Diff(Operation.EQUAL, commonprefix));
186 diffs.addLast(new Diff(Operation.EQUAL, commonsuffix));
189 diff_cleanupMerge(diffs);
190 return diffs;
206 LinkedList<Diff> diffs = new LinkedList<Diff>() local
1438 LinkedList<Diff> diffs = new LinkedList<Diff>(); local
1746 LinkedList<Diff> diffs = diff_main(text1, text2, true); local
1970 LinkedList<Diff> diffs = diff_main(text1, text2, false); local
2030 LinkedList<Diff> diffs = patch.diffs; local
2341 public LinkedList<Diff> diffs; field in class:Patch
    [all...]
  /external/llvm/utils/
findoptdiff 26 # for each pass, if they do differ, are placed in a diffs.# file.
80 diffs="diffs."$((counter++))
81 diff "$opt1ll" "$opt2ll" > $diffs
87 head $diffs
88 echo 'Switches:' $switches_to_use >> $diffs
90 rm $diffs
  /external/chromium_org/third_party/smhasher/src/
DifferentialTest.h 22 bool ProcessDifferentials ( std::vector<keytype> & diffs, int reps, bool dumpCollisions )
24 std::sort(diffs.begin(), diffs.end());
31 if(diffs.size())
33 keytype kp = diffs[0];
35 for(int i = 1; i < (int)diffs.size(); i++)
37 if(diffs[i] == kp)
61 kp = diffs[i];
82 printf("%d total collisions, of which %d single collisions were ignored",(int)diffs.size(),ignore);
104 void DiffTestRecurse ( pfHash hash, keytype & k1, keytype & k2, hashtype & h1, hashtype & h2, int start, int bitsleft, std::vector<keytype> & diffs )
144 std::vector<keytype> diffs; local
203 std::vector<keytype> diffs; local
    [all...]
  /external/valgrind/main/nightly/bin/
nightly 95 rm -rf diffs diffs.txt diff.short final new.short new.verbose old.short old.verbose
242 # Gather up the diffs (at most the first 100 lines for each one) into a
247 echo "Congratulations, all tests passed!" >> diffs
250 echo "=================================================" >> diffs
251 echo $i >> diffs
252 echo "=================================================" >> diffs
254 cat $i >> diffs
256 head -n $MAX_LINES $i >> diffs
257 echo "<truncated beyond $MAX_LINES lines>" >> diffs
    [all...]
  /external/skia/tools/
reformat-json.py 12 so that subsequent runs of rebaseline.py will generate useful diffs
13 (only the actual checksum differences will show up as diffs, not obscured
jsondiff.py 11 Gathers diffs between 2 JSON expectations files, or between actual and
43 # Object that generates diffs between two JSON gm result files.
136 """Generate a dictionary showing the diffs between old_dict and new_dict.
149 """Generate a dictionary showing the diffs:
160 """Generate a dictionary showing the diffs:
190 diffs = differ.GenerateDiffDict(oldfile=args.old, newfile=args.new)
191 json.dump(diffs, sys.stdout, sort_keys=True, indent=2)
render_pictures_main.cpp 29 "by more than this amount are considered errors, though all diffs are reported. "
246 int diffs[256] = {0}; local
305 diffs[diff]++;
322 if(diffs[i] > 0) {
323 SkDebugf("Number of pixels with max diff of %i is %i\n", i, diffs[i]);
compare_baselines.py 36 # validate that the diffs look right in the review tool
168 diff_dir = os.path.join(tempdir_base, 'diffs')
  /external/oprofile/libpp/
diff_container.cpp 52 if (fabs(sym.diffs[0]) < choice.threshold)
66 symbol.diffs.fill(sym.sample.counts.size(), -INFINITY);
77 symbol.diffs.fill(sym.sample.counts.size(), INFINITY);
96 symbol.diffs[i] = op_ratio(percent2 - percent1, percent1);
97 symbol.diffs[i] *= 100.0;
symbol.h 135 diff_array_t diffs; member in struct:diff_symbol
  /development/ndk/tools/
headers-diff-bionic-vs-ndk.py 145 self.diffs = {}
163 if arch not in self.diffs:
164 self.diffs[arch] = {}
165 if root not in self.diffs[arch]:
166 self.diffs[arch][root] = {}
168 self.diffs[arch][root][include] = output
183 if arch not in self.diffs:
186 roots = self.diffs[arch].keys()
190 includes = self.diffs[arch][root].keys()
195 diff = self.diffs[arch][root][include
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
dadrcal.cpp 223 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
225 +", SET SOURCE calendar was not set: Differences: "+ diffs
271 UnicodeString diffs = diffSet.diffFrom(toSet, status); local
273 +" Differences: "+ diffs +"', status: "
307 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
309 +", SOURCE calendar was not set: Differences: "+ diffs
329 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
331 +", SET SOURCE calendar was not set: Differences: "+ diffs
349 UnicodeString diffs = diffSet.diffFrom(toSet, status); local
350 errln((UnicodeString)"FAIL: "+thisString+", Differences: "+ diffs
    [all...]
dadrfmt.cpp 285 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
287 +", Differences: '"+ diffs
  /external/icu4c/test/intltest/
dadrcal.cpp 223 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
225 +", SET SOURCE calendar was not set: Differences: "+ diffs
271 UnicodeString diffs = diffSet.diffFrom(toSet, status); local
273 +" Differences: "+ diffs +"', status: "
307 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
309 +", SOURCE calendar was not set: Differences: "+ diffs
329 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
331 +", SET SOURCE calendar was not set: Differences: "+ diffs
349 UnicodeString diffs = diffSet.diffFrom(toSet, status); local
350 errln((UnicodeString)"FAIL: "+thisString+", Differences: "+ diffs
    [all...]
dadrfmt.cpp 304 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
306 +", Differences: '"+ diffs
  /external/clang/utils/
CmpDriver 183 diffs = list(diff.getDiffs())
184 if diffs:
189 for i,(aElt,bElt) in enumerate(diffs):
  /external/libvpx/libvpx/tools/
ftfy.sh 132 # Intersect the two diffs
133 "${dirname_self}"/intersect-diffs.py \
  /frameworks/base/core/java/android/os/
WorkSource.java 235 WorkSource[] diffs = new WorkSource[2]; local
236 diffs[0] = sNewbWork;
237 diffs[1] = sGoneWork;
238 return diffs;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
difflib.py 565 # invariant: we've pumped out correct diffs to change
785 contrary, minimal diffs are often counter-intuitive, because they synch
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
difflib.py 565 # invariant: we've pumped out correct diffs to change
785 contrary, minimal diffs are often counter-intuitive, because they synch
    [all...]
  /external/chromium_org/v8/test/mjsunit/tools/
tickprocessor.js 333 var diffs = this.diffs = [];
345 diffs.push('line ' + outputPos + ': expected <' +
365 if (this.diffs.length > 0 || this.unexpectedOut != null) {
367 assertEquals([], this.diffs);
  /external/v8/test/mjsunit/tools/
tickprocessor.js 329 var diffs = this.diffs = [];
341 diffs.push('line ' + outputPos + ': expected <' +
361 if (this.diffs.length > 0 || this.unexpectedOut != null) {
363 assertEquals([], this.diffs);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_case.py 758 diffs = set(unittest.util._count_diff_all_purpose('aaabccd', 'abbbcce'))
760 self.assertEqual(diffs, expected)
762 diffs = unittest.util._count_diff_all_purpose([[]], [])
763 self.assertEqual(diffs, [(1, 0, [])])
765 diffs = set(unittest.util._count_diff_hashable('aaabccd', 'abbbcce'))
767 self.assertEqual(diffs, expected)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_case.py 758 diffs = set(unittest.util._count_diff_all_purpose('aaabccd', 'abbbcce'))
760 self.assertEqual(diffs, expected)
762 diffs = unittest.util._count_diff_all_purpose([[]], [])
763 self.assertEqual(diffs, [(1, 0, [])])
765 diffs = set(unittest.util._count_diff_hashable('aaabccd', 'abbbcce'))
767 self.assertEqual(diffs, expected)
    [all...]

Completed in 3651 milliseconds

1 2