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

1 2 3

  /external/clang/test/CodeGen/
2005-01-02-PointerDifference.c 4 int Diff(int *P, int *Q) { return P-Q; }
  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch_test.java 5 * http://code.google.com/p/google-diff-match-patch/
33 import name.fraser.neil.plaintext.diff_match_patch.Diff;
50 // DIFF TEST FUNCTIONS
126 // First check that Diff equality works.
127 assertTrue("diff_charsToLines:", new Diff(EQUAL, "a").equals(new Diff(EQUAL, "a")));
129 assertEquals("diff_charsToLines:", new Diff(EQUAL, "a"), new Diff(EQUAL, "a"));
132 LinkedList<Diff> diffs = diffList(new Diff(EQUAL, "\u0001\u0002\u0001"), new Diff(INSERT, "\u0002\u0001\u0002"))
    [all...]
diff_match_patch.java 2 * Diff Match and Patch
5 * http://code.google.com/p/google-diff-match-patch/
40 * Functions for diff, match and patch.
48 * Class containing the diff, match and patch methods.
57 * Number of seconds to map a diff before giving up (0 for infinity).
65 * The size beyond which the double-ended diff activates.
114 // DIFF FUNCTIONS
118 * The data structure representing a diff is a Linked list of Diff objects:
119 * {Diff(Operation.DELETE, "Hello"), Diff(Operation.INSERT, "Goodbye")
    [all...]
  /external/llvm/tools/llvm-diff/
DiffLog.cpp 34 Diff.push_back(DiffRecord(L, R));
38 Diff.push_back(DiffRecord(L, DiffRecord::second_type(nullptr)));
42 Diff.push_back(DiffRecord(DiffRecord::first_type(nullptr), R));
45 unsigned DiffLogBuilder::getNumLines() const { return Diff.size(); }
48 return (Diff[I].first ? (Diff[I].second ? DC_match : DC_left)
51 Instruction *DiffLogBuilder::getLeft(unsigned I) const { return Diff[I].first; }
52 Instruction *DiffLogBuilder::getRight(unsigned I) const { return Diff[I].second; }
DiffLog.h 56 /// A temporary-object class for building up diff messages.
59 SmallVector<DiffRecord, 20> Diff;
  /external/llvm/tools/bugpoint/
FindBugs.cpp 93 bool Diff = diffProgram(Program, Filename, "", false, &Error);
94 if (Error.empty() && Diff) {
105 outs() << "\n*** diff'd output matches!\n";
BugDriver.cpp 38 // program. If this filename is set, it is used as the reference diff source,
204 // Diff the output of the raw program against the reference output. If it
208 bool Diff = diffProgram(Program, "", "", false, &Error);
213 if (!Diff) {
223 outs() << "\n*** Input program does not match reference diff!\n";
  /external/chromium_org/extensions/common/permissions/
manifest_permission.h 56 virtual ManifestPermission* Diff(const ManifestPermission* rhs) const = 0;
settings_override_permission.h 34 virtual APIPermission* Diff(const APIPermission* rhs) const OVERRIDE;
settings_override_permission.cc 82 APIPermission* SettingsOverrideAPIPermission::Diff(
api_permission.cc 65 virtual APIPermission* Diff(const APIPermission* rhs) const OVERRIDE {
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/ppc/
recon_altivec.asm 16 .macro row_of16 Diff Pred Dst Stride
20 lvx v3, 0, \Diff ;# v3 = d0..d7
23 lvx v3, r8, \Diff ;# v3 = d8..d15
24 addi \Diff, \Diff, 32 ;# next diff
56 .macro two_rows_of8 Diff Pred Dst Stride write_first_four_pels
59 lvx v3, 0, \Diff ;# v3 = d0..d7
62 lvx v3, r8, \Diff ;# v2 = d8..d15
100 addi r3, r3, 32; ;# next diff
    [all...]
  /external/libvpx/libvpx/vp8/common/ppc/
recon_altivec.asm 16 .macro row_of16 Diff Pred Dst Stride
20 lvx v3, 0, \Diff ;# v3 = d0..d7
23 lvx v3, r8, \Diff ;# v3 = d8..d15
24 addi \Diff, \Diff, 32 ;# next diff
56 .macro two_rows_of8 Diff Pred Dst Stride write_first_four_pels
59 lvx v3, 0, \Diff ;# v3 = d0..d7
62 lvx v3, r8, \Diff ;# v2 = d8..d15
100 addi r3, r3, 32; ;# next diff
    [all...]
  /external/llvm/lib/Support/
FileUtilities.cpp 96 // The diff failed.
141 double Diff;
143 Diff = std::abs(V1/V2 - 1.0);
145 Diff = std::abs(V2/V1 - 1.0);
147 Diff = 0; // Both zero.
148 if (Diff > RelTolerance) {
152 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n'
170 /// error occurs, allowing the caller to distinguish between a failed diff and
    [all...]
  /external/jdiff/src/jdiff/
MethodAPI.java 99 if (Diff.showAllChanges &&
103 if (Diff.showAllChanges &&
MergeChanges.java 95 ctorDiff.addModifiersChange(removedCtor.modifiers_.diff(addedCtor.modifiers_));
107 ctorDiff.documentationChange_ = Diff.saveDocDiffs(pkgDiff.name_, classDiff.name_, removedCtor.doc_, addedCtor.doc_, id, title);
155 methodDiff.addModifiersChange(removedMethod.modifiers_.diff(addedMethod.modifiers_));
167 methodDiff.documentationChange_ = Diff.saveDocDiffs(pkgDiff.name_, classDiff.name_, removedMethod.doc_, addedMethod.doc_, id, title);
232 methodDiff.addModifiersChange(removedMethod.modifiers_.diff(addedMethod.modifiers_));
244 methodDiff.documentationChange_ = Diff.saveDocDiffs(pkgDiff.name_, classDiff.name_, removedMethod.doc_, addedMethod.doc_, id, title);
275 if (Diff.showAllChanges &&
285 if (Diff.showAllChanges &&
315 fieldDiff.addModifiersChange(removedField.modifiers_.diff(addedField.modifiers_));
324 fieldDiff.documentationChange_ = Diff.saveDocDiffs(pkgDiff.name_, classDiff.name_, removedField.doc_, addedField.doc_, id, title)
    [all...]
APIComparator.java 144 Diff.closeDiffFile();
218 pkgDiff.documentationChange_ = Diff.saveDocDiffs(pkgDiff.name_, null, oldPkg.doc_, newPkg.doc_, id, title);
222 // Only add to the parent Diff object if some difference has been found
262 String inheritanceChange = ClassDiff.diff(oldClass, newClass);
283 classDiff.documentationChange_ = Diff.saveDocDiffs(pkgDiff.name_,
288 String modifiersChange = oldClass.modifiers_.diff(newClass.modifiers_);
398 memberDiff.documentationChange_ = Diff.saveDocDiffs(
401 String modifiersChange = oldCtor.modifiers_.diff(newCtor.modifiers_);
605 if (Diff.showAllChanges &&
616 if (Diff.showAllChanges &&
    [all...]
Diff.java 12 class Diff {
48 DiffMyers diff = new DiffMyers(oldDocWords, newDocWords); local
49 DiffMyers.change script = diff.diff_2(false);
343 if (!Diff.noDocDiffs) {
344 diffFile.println(" <TD BGCOLOR=\"#EEEEFF\" CLASS=\"NavBarCell1\"> <A HREF=\"" + Diff.diffFileName + "index" + HTMLReportGenerator.reportFileExt + "\"><FONT CLASS=\"NavBarFont1\"><B>Text Changes</B></FONT></A>&nbsp;</TD>");
475 if (!Diff.noDocDiffs) {
516 String link = "<a href=\"" + Diff.diffFileName + diffOutput.pkgName_ + HTMLReportGenerator.reportFileExt + "#" + diffOutput.id_ + "\">";
586 * Emit the HTML footer and close the diff file.
    [all...]
  /external/chromium_org/extensions/common/api/bluetooth/
bluetooth_manifest_permission.h 50 virtual ManifestPermission* Diff(const ManifestPermission* rhs)
bluetooth_manifest_permission.cc 161 ManifestPermission* BluetoothManifestPermission::Diff(
  /external/chromium_org/extensions/common/api/sockets/
sockets_manifest_permission.h 49 virtual ManifestPermission* Diff(const ManifestPermission* rhs) const
sockets_manifest_permission_unittest.cc 176 // Union/Diff/Intersection
178 static_cast<SocketsManifestPermission*>(permission->Diff(clone.get())));
365 // Diff
368 permission1->Diff(permission2.get())));
377 permission1->Diff(union_perm.get())));
  /external/ltrace/testsuite/ltrace.main/
system_calls.exp 94 proc Diff {d1 d2} {
131 Match [Diff [Calls [ltraceRun -L -S -- $bin]] \
  /external/llvm/lib/Transforms/Scalar/
ConstantHoisting.cpp 392 APInt Diff = ConstCand->ConstInt->getValue() -
394 Constant *Offset = Diff == 0 ? nullptr : ConstantInt::get(Ty, Diff);
420 APInt Diff = CC->ConstInt->getValue() - MinValItr->ConstInt->getValue();
421 if ((Diff.getBitWidth() <= 64) &&
422 TTI->isLegalAddImmediate(Diff.getSExtValue()))
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
ui_overrides_handler.cc 65 virtual ManifestPermission* Diff(const ManifestPermission* rhs) const

Completed in 5120 milliseconds

1 2 3