/external/valgrind/nightly/bin/ |
D | nightly | 104 rm -rf diffs diffs.txt diff.short final new.short new.verbose old.short old.verbose 290 echo "Congratulations, all tests passed!" >> diffs 293 echo "=================================================" >> diffs 294 echo $i >> diffs 295 echo "=================================================" >> diffs 297 cat $i >> diffs 299 head -n $MAX_LINES $i >> diffs 300 echo "<truncated beyond $MAX_LINES lines>" >> diffs 307 mv diffs diffs.txt 313 diffs.txt > sendmail.log 2>&1
|
/external/llvm/utils/ |
D | findoptdiff | 80 diffs="diffs."$((counter++)) 81 diff "$opt1ll" "$opt2ll" > $diffs 87 head $diffs 88 echo 'Switches:' $switches_to_use >> $diffs 90 rm $diffs
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
D | DataDrivenCalendarTest.java | 74 String diffs = diffSet.diffFrom(fromSet); in testConvert() local 76 +", SOURCE calendar was not set: Differences: "+ diffs); in testConvert() 88 String diffs = diffSet.diffFrom(fromSet); in testConvert() local 90 +", SET SOURCE calendar was not set: Differences: "+ diffs); in testConvert() 100 String diffs = diffSet.diffFrom(toSet); in testConvert() local 101 errln((String)"FAIL: "+thisString+", Differences: "+ diffs); in testConvert() 238 String diffs = diffSet.diffFrom(fromSet); in testOps() local 240 +", SET SOURCE calendar was not set: Differences: "+ diffs); in testOps() 288 String diffs = diffSet.diffFrom(toSet); in testOps() local 290 +" Differences: "+ diffs ); in testOps()
|
/external/icu/icu4c/source/test/intltest/ |
D | dadrcal.cpp | 223 UnicodeString diffs = diffSet.diffFrom(fromSet, status); in testOps() local 225 +", SET SOURCE calendar was not set: Differences: "+ diffs in testOps() 271 UnicodeString diffs = diffSet.diffFrom(toSet, status); in testOps() local 273 +" Differences: "+ diffs +"', status: " in testOps() 307 UnicodeString diffs = diffSet.diffFrom(fromSet, status); in testConvert() local 309 +", SOURCE calendar was not set: Differences: "+ diffs in testConvert() 329 UnicodeString diffs = diffSet.diffFrom(fromSet, status); in testConvert() local 331 +", SET SOURCE calendar was not set: Differences: "+ diffs in testConvert() 349 UnicodeString diffs = diffSet.diffFrom(toSet, status); in testConvert() local 350 errln((UnicodeString)"FAIL: "+thisString+", Differences: "+ diffs in testConvert()
|
D | dadrfmt.cpp | 305 UnicodeString diffs = diffSet.diffFrom(fromSet, status); in testConvertDate() local 307 +", Differences: '"+ diffs in testConvertDate()
|
/external/v8/test/mjsunit/tools/ |
D | 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);
|
/external/chromium-trace/trace-viewer/third_party/Paste/paste/debug/ |
D | fsdiff.py | 322 def report_expected_diffs(diffs, colorize=False): argument 327 if not diffs: 329 diffs = diffs.items() 330 diffs.sort() 333 for path, desc in diffs: 356 s.append('Files with differences: %s' % len(diffs))
|
/external/pdfium/testing/tools/ |
D | text_diff.py | 20 diffs = difflib.unified_diff( 26 for diff in diffs:
|
/external/valgrind/nightly/conf/ |
D | wildebeest.sendmail | 3 diffs="$3" 14 cat "$diffs" >> $MAILFILE
|
D | wildebeest32.sendmail | 3 diffs="$3" 14 cat "$diffs" >> $MAILFILE
|
D | lfedora1.sendmail | 3 diffs="$3" 15 cat "$diffs" >> $MAILFILE
|
/external/skia/tools/skpdiff/ |
D | README | 11 "/usr/local/google/home/zachr/Downloads/diffs/baseline" \ 12 "/usr/local/google/home/zachr/Downloads/diffs/test"
|
/external/skia/tests/ |
D | ImageFilterTest.cpp | 383 …int diffs = memcmp(positiveResult1.getAddr32(0, y), negativeResult1.getAddr32(0, y), positiveResul… in test_negative_blur_sigma() local 384 REPORTER_ASSERT(reporter, !diffs); in test_negative_blur_sigma() 385 if (diffs) { in test_negative_blur_sigma() 388 …diffs = memcmp(positiveResult1.getAddr32(0, y), negativeResult2.getAddr32(0, y), positiveResult1.r… in test_negative_blur_sigma() 389 REPORTER_ASSERT(reporter, !diffs); in test_negative_blur_sigma() 390 if (diffs) { in test_negative_blur_sigma() 393 …diffs = memcmp(positiveResult1.getAddr32(0, y), positiveResult2.getAddr32(0, y), positiveResult1.r… in test_negative_blur_sigma() 394 REPORTER_ASSERT(reporter, !diffs); in test_negative_blur_sigma() 395 if (diffs) { in test_negative_blur_sigma() 513 …int diffs = memcmp(untiledResult.getAddr32(0, y), tiledResult.getAddr32(0, y), untiledResult.rowBy… in DEF_TEST() local [all …]
|
/external/skia/experimental/PdfViewer/ |
D | SkPdfFont.h | 428 const SkPdfArray* diffs = fEncodingDict->Differences(parsed); in SkPdfType3Font() local 430 for (unsigned int i = 0 ; i < diffs->size(); i++) { in SkPdfType3Font() 431 if ((*diffs)[i]->isInteger()) { in SkPdfType3Font() 432 j = (unsigned int)(*diffs)[i]->intValue(); in SkPdfType3Font() 433 } else if ((*diffs)[i]->isName()) { in SkPdfType3Font() 435 fChars[j - fFirstChar].fObj = fCharProcs->get((*diffs)[i]); in SkPdfType3Font()
|
/external/clang/utils/ |
D | CmpDriver | 188 diffs = list(diff.getDiffs()) 189 if diffs: 194 for i,(aElt,bElt) in enumerate(diffs):
|
/external/skia/tools/ |
D | jsondiff.py | 195 diffs = differ.GenerateDiffDict(oldfile=args.old, newfile=args.new) 196 json.dump(diffs, sys.stdout, sort_keys=True, indent=2)
|
D | render_pictures_main.cpp | 263 int diffs[256] = {0}; in render_picture() local 329 diffs[diff]++; in render_picture() 346 if(diffs[i] > 0) { in render_picture() 347 SkDebugf("Number of pixels with max diff of %i is %i\n", i, diffs[i]); in render_picture()
|
/external/libvncserver/x11vnc/ |
D | scan.c | 2062 int diffs = 0, ct; in copy_all_tiles() local 2081 diffs++; in copy_all_tiles() 2099 return diffs; in copy_all_tiles() 2108 int diffs = 0, ct; in copy_all_tile_runs() local 2132 diffs += run; in copy_all_tile_runs() 2167 return diffs; in copy_all_tile_runs() 2182 int diffs = 0, ct; in copy_tiles_backward_pass() local 2217 diffs++; in copy_tiles_backward_pass() 2220 return diffs; in copy_tiles_backward_pass() 2225 int diffs = 0, ct; in copy_tiles_additional_pass() local [all …]
|
D | macosxCGS.c | 178 int diffs = 0; in macosxCGS_follow_animation_win() local 224 diffs++; in macosxCGS_follow_animation_win() 233 if (diffs >= 2) { in macosxCGS_follow_animation_win()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | DataDrivenFormatTest.java | 183 String diffs = diffSet.diffFrom(fromSet); in testConvertDate() local 184 errln(caseString + " FAIL: differences: " + diffs); in testConvertDate()
|
/external/eclipse-windowbuilder/propertysheet/ |
D | README.txt | 107 Now diff the two trees. Look for diffs in the packages related to the 109 this library. If any of the diffs are related to the propertysheet or 112 get the number). Note that the diffs may need some rewriting if they
|
/external/lldb/include/lldb/Interpreter/ |
D | Options.h | 333 OptionsSetDiff (const OptionSet &set_a, const OptionSet &set_b, OptionSet &diffs);
|
/external/libvpx/libvpx/tools/ |
D | ftfy.sh | 132 "${dirname_self}"/intersect-diffs.py \
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
D | vp9_variance_impl_sse2.asm | 122 pxor xmm7, xmm7 ; clear xmm7 for accumulating diffs 244 pxor xmm7, xmm7 ; clear xmm7 for accumulating diffs
|
/external/valgrind/nightly/ |
D | README.txt | 117 - The third is the name of the file containing all the diffs from 162 - $DIR/diffs holds the diffs from all the failing tests in the newer tree,
|