/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/chromium_org/third_party/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. 142 """Generate a dictionary showing the diffs between old_dict and new_dict. 155 """Generate a dictionary showing the diffs: 166 """Generate a dictionary showing the diffs: 196 diffs = differ.GenerateDiffDict(oldfile=args.old, newfile=args.new) 197 json.dump(diffs, sys.stdout, sort_keys=True, indent=2)
|
render_pictures_main.cpp | 35 "by more than this amount are considered errors, though all diffs are reported. " 279 int diffs[256] = {0}; local 345 diffs[diff]++; 362 if(diffs[i] > 0) { 363 SkDebugf("Number of pixels with max diff of %i is %i\n", i, diffs[i]);
|
/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. 142 """Generate a dictionary showing the diffs between old_dict and new_dict. 155 """Generate a dictionary showing the diffs: 166 """Generate a dictionary showing the diffs: 196 diffs = differ.GenerateDiffDict(oldfile=args.old, newfile=args.new) 197 json.dump(diffs, sys.stdout, sort_keys=True, indent=2)
|
render_pictures_main.cpp | 32 "by more than this amount are considered errors, though all diffs are reported. " 268 int diffs[256] = {0}; local 329 diffs[diff]++; 346 if(diffs[i] > 0) { 347 SkDebugf("Number of pixels with max diff of %i is %i\n", i, diffs[i]);
|
/external/valgrind/main/nightly/bin/ |
nightly | 104 rm -rf diffs diffs.txt diff.short final new.short new.verbose old.short old.verbose 281 # Gather up the diffs (at most the first 100 lines for each one) into a 286 echo "Congratulations, all tests passed!" >> diffs 289 echo "=================================================" >> diffs 290 echo $i >> diffs 291 echo "=================================================" >> diffs 293 cat $i >> diffs 295 head -n $MAX_LINES $i >> diffs 296 echo "<truncated beyond $MAX_LINES lines>" >> diffs [all...] |
/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 = {} 164 if arch not in self.diffs: 165 self.diffs[arch] = {} 166 if root not in self.diffs[arch]: 167 self.diffs[arch][root] = {} 169 self.diffs[arch][root][include] = output 184 if arch not in self.diffs: 187 roots = self.diffs[arch].keys() 191 includes = self.diffs[arch][root].keys() 196 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...] |
/external/icu/icu4c/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...] |
/cts/apps/CameraITS/tests/scene1/ |
test_dng_noise_model.py | 105 diffs = [var_measured[ch][i] - var_expected[ch][i] 107 print "Diffs (%s):"%(["R","GR","GB","B"][ch]), diffs 108 for i,diff in enumerate(diffs):
|
/external/chromium_org/third_party/skia/experimental/PdfViewer/ |
SkPdfFont.h | 428 const SkPdfArray* diffs = fEncodingDict->Differences(parsed); local 430 for (unsigned int i = 0 ; i < diffs->size(); i++) { 431 if ((*diffs)[i]->isInteger()) { 432 j = (unsigned int)(*diffs)[i]->intValue(); 433 } else if ((*diffs)[i]->isName()) { 435 fChars[j - fFirstChar].fObj = fCharProcs->get((*diffs)[i]);
|
/external/skia/experimental/PdfViewer/ |
SkPdfFont.h | 428 const SkPdfArray* diffs = fEncodingDict->Differences(parsed); local 430 for (unsigned int i = 0 ; i < diffs->size(); i++) { 431 if ((*diffs)[i]->isInteger()) { 432 j = (unsigned int)(*diffs)[i]->intValue(); 433 } else if ((*diffs)[i]->isName()) { 435 fChars[j - fFirstChar].fObj = fCharProcs->get((*diffs)[i]);
|
/external/clang/utils/ |
CmpDriver | 188 diffs = list(diff.getDiffs()) 189 if diffs: 194 for i,(aElt,bElt) in enumerate(diffs):
|
/external/chromium_org/third_party/skia/tests/ |
ImageFilterTest.cpp | 342 int diffs = memcmp(positiveResult1.getAddr32(0, y), negativeResult1.getAddr32(0, y), positiveResult1.rowBytes()); local 343 REPORTER_ASSERT(reporter, !diffs); 344 if (diffs) { 347 diffs = memcmp(positiveResult1.getAddr32(0, y), negativeResult2.getAddr32(0, y), positiveResult1.rowBytes()); 348 REPORTER_ASSERT(reporter, !diffs); 349 if (diffs) { 352 diffs = memcmp(positiveResult1.getAddr32(0, y), positiveResult2.getAddr32(0, y), positiveResult1.rowBytes()); 353 REPORTER_ASSERT(reporter, !diffs); 354 if (diffs) { 467 int diffs = memcmp(untiledResult.getAddr32(0, y), tiledResult.getAddr32(0, y), untiledResult.rowBytes()) local 524 int diffs = memcmp(result1.getAddr32(0, y), result2.getAddr32(0, y), result1.rowBytes()); local 636 int diffs = memcmp(result1.getAddr32(0, y), result2.getAddr32(0, y), result1.rowBytes()); local [all...] |
/external/lldb/include/lldb/Interpreter/ |
Options.h | 333 OptionsSetDiff (const OptionSet &set_a, const OptionSet &set_b, OptionSet &diffs);
|
/external/chromium_org/third_party/libvpx/source/libvpx/tools/ |
ftfy.sh | 131 # Intersect the two diffs 132 "${dirname_self}"/intersect-diffs.py \
|
/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;
|