Home
last modified time | relevance | path

Searched refs:patches (Results 1 – 25 of 175) sorted by relevance

1234567

/external/google-diff-match-patch/name/fraser/neil/plaintext/
Ddiff_match_patch_test.java710 List<Patch> patches; in testPatchToText() local
711 patches = dmp.patch_fromText(strp); in testPatchToText()
712 assertEquals("patch_toText: Single", strp, dmp.patch_toText(patches)); in testPatchToText()
715 patches = dmp.patch_fromText(strp); in testPatchToText()
716 assertEquals("patch_toText: Dual", strp, dmp.patch_toText(patches)); in testPatchToText()
741 LinkedList<Patch> patches; in testPatchMake() local
746 patches = dmp.patch_make(text2, text1); in testPatchMake()
747 assertEquals("patch_make: Text2+Text1 inputs", expectedPatch, dmp.patch_toText(patches)); in testPatchMake()
750 patches = dmp.patch_make(text1, text2); in testPatchMake()
751 assertEquals("patch_make: Text1+Text2 inputs", expectedPatch, dmp.patch_toText(patches)); in testPatchMake()
[all …]
Ddiff_match_patch.java1798 LinkedList<Patch> patches = new LinkedList<Patch>(); in patch_make() local
1800 return patches; // Get rid of the null case. in patch_make()
1843 patches.add(patch); in patch_make()
1867 patches.add(patch); in patch_make()
1870 return patches; in patch_make()
1879 public LinkedList<Patch> patch_deepCopy(LinkedList<Patch> patches) { in patch_deepCopy() argument
1881 for (Patch aPatch : patches) { in patch_deepCopy()
1905 public Object[] patch_apply(LinkedList<Patch> patches, String text) { in patch_apply() argument
1906 if (patches.isEmpty()) { in patch_apply()
1911 patches = patch_deepCopy(patches); in patch_apply()
[all …]
/external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
Dbug.py90 def patches(self, include_obsolete=False): member in Bug
95 return [patch for patch in self.patches() if patch.review() == "?"]
98 patches = [patch for patch in self.patches() if patch.review() == "+"]
100 return patches
103 return filter(lambda patch: patch.reviewer(), patches)
106 patches = [patch for patch in self.patches()
109 return patches
112 return filter(lambda patch: patch.committer(), patches)
/external/webkit/Tools/Scripts/webkitpy/tool/bot/
Dfeeders.py56 patches = self._validate_patches()
57 patches = self._patches_with_acceptable_review_flag(patches)
58 patches = sorted(patches, self._patch_cmp)
59 patch_ids = [patch.id() for patch in patches]
66 def _patches_with_acceptable_review_flag(self, patches): argument
67 return [patch for patch in patches if patch.review() in [None, '+']]
Dfeeders_unittest.py79 patches = [MockPatch(1, None), MockPatch(2, '-'), MockPatch(3, "+")]
80 ….assertEquals([patch.id for patch in feeder._patches_with_acceptable_review_flag(patches)], [1, 3])
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
Dobsoletepatches.py46 patches = self._tool.bugs.fetch_bug(bug_id).patches()
47 if not patches:
49 log("Obsoleting %s on bug %s" % (pluralize("old patch", len(patches)), bug_id))
50 for patch in patches:
Dupdatechangelogswithreviewer.py46 patches = self._tool.bugs.fetch_bug(bug_id).reviewed_patches()
47 if len(patches) != 1:
48 … log("%s on bug %s, cannot infer reviewer." % (pluralize("reviewed patch", len(patches)), bug_id))
50 patch = patches[0]
Dclosebug.py46 patches = self._tool.bugs.fetch_bug(state["patch"].bug_id()).patches()
47 for patch in patches:
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
Ddownload.py137 def _collect_patches_by_bug(patches): argument
139 for patch in patches:
145 patches = self._fetch_list_of_patches_to_process(options, args, tool)
148 bugs_to_patches = self._collect_patches_by_bug(patches)
149 …log("Processing %s from %s." % (pluralize("patch", len(patches)), pluralize("bug", len(bugs_to_pat…
151 for patch in patches:
183 patches = tool.bugs.fetch_bug(bug_id).reviewed_patches()
184 log("%s found on bug %s." % (pluralize("reviewed patch", len(patches)), bug_id))
185 all_patches += patches
Dqueries.py77 patches = tool.bugs.queries.fetch_patches_from_commit_queue()
79 for patch in patches:
105 patches = tool.bugs.queries.fetch_patches_from_pending_commit_list()
106 patches_needing_cq = filter(self._needs_commit_queue, patches)
/external/valgrind/main/drd/scripts/ppc-cross/
Ddownload-and-build-ppc-crosscompiler84 /bin/tar -C patches -cf - . | /bin/tar -C $CROSSTOOL_FOLDER/patches -xf -
87 for f in ../crosstool-patches/*
/external/llvm/lib/Target/X86/
DREADME-FPStack.txt8 http://gcc.gnu.org/ml/gcc-patches/2004-04/msg00659.html
44 http://gcc.gnu.org/ml/gcc-patches/2004-11/msg02410.html
55 http://gcc.gnu.org/ml/gcc-patches/2004-08/msg02006.html
56 http://gcc.gnu.org/ml/gcc-patches/2004-08/msg02011.html
/external/openssh/
DCREDITS21 Chip Salzenberg <chip@valinux.com> - Assorted patches
30 Darren Hall <dhall@virage.org> - AIX patches
50 Jim Knoble <jmknoble@pobox.com> - Many patches
62 Marc G. Fournier <marc.fournier@acadiau.ca> - Solaris patches
67 Matt Richards <v2matt@btv.ibm.com> - AIX patches
73 Niels Kristian Bech Jensen <nkbj@image.dk> - Assorted patches
79 Phil Hands <phil@hands.com> - Debian scripts, assorted patches
88 Solar Designer <solar@openwall.com> - many patches and technical assistance
/external/openssl/
DREADME.android5 openssl.version. See patches/README for more information on how the
32 and patches in patches/ as appropriate. You might want to use:
34 ./import_openssl.sh regenerate patches/*.patch
46 If there are build errors, then patches/*.mk, openssl.config, or
/external/libpcap/
DREADME17 Please send patches against the master copy to patches@tcpdump.org.
72 object patches available in:
88 "patches@tcpdump.org", or submitted as patches on the SourceForge site
/external/chromium/testing/gmock/scripts/
Dupload.py699 patches = dict()
700 [patches.setdefault(v, k) for k, v in patch_list]
701 for filename in patches.keys():
703 file_id_str = patches.get(filename)
1151 patches = []
1170 patches.append((filename, ''.join(diff)))
1177 patches.append((filename, ''.join(diff)))
1178 return patches
1186 patches = SplitPatch(data)
1188 for patch in patches:
[all …]
/external/chromium/testing/gtest/scripts/
Dupload.py699 patches = dict()
700 [patches.setdefault(v, k) for k, v in patch_list]
701 for filename in patches.keys():
703 file_id_str = patches.get(filename)
1151 patches = []
1170 patches.append((filename, ''.join(diff)))
1177 patches.append((filename, ''.join(diff)))
1178 return patches
1186 patches = SplitPatch(data)
1188 for patch in patches:
[all …]
/external/webkit/Tools/Scripts/webkitpy/common/config/
Dcommittervalidator.py93 def patches_after_rejecting_invalid_commiters_and_reviewers(self, patches): argument
94 return [patch for patch in patches if self._reject_patch_if_flags_are_invalid(patch)]
/external/chromium/net/data/ftp/
Ddir-listing-ls-4.expected56 patches
/external/e2fsprogs/util/
Dall.exclude5 patches
/external/elfutils/
DTHANKS1 At least the following have submitted valuable patches:
/external/okhttp/
DREADME.android5 Local patches
/external/webkit/Tools/android/flex-2.5.4a/MISC/
DEBCDIC39 My patches were in the flex 2.3 distribution for a while in the MISC
41 have (somewhere) the patches that I created from version 2.3.6.
/external/grub/docs/
Dinternals.texi23 * Submitting patches:: Where and how you should send patches
388 @node Submitting patches
389 @section Where and how you should send patches
391 When you write patches for GRUB, please send them to the mailing list
399 segregate features and produce many patches.
410 Make patches in unified diff format. @samp{diff -urN} is appropriate in
414 Don't make patches reversely. Reverse patches are difficult to read and
/external/openssl/crypto/dsa/
DREADME1 The stuff in here is based on patches supplied to me by

1234567