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

1 2

  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
obsoletepatches.py 46 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:
closebug.py 44 # Check to make sure there are no r? or r+ patches on the bug before closing.
45 # Assume that r- patches are just previous patches someone forgot to obsolete.
46 patches = self._tool.bugs.fetch_bug(state["patch"].bug_id()).patches()
47 for patch in patches:
49 log("Not closing bug %s as attachment %s has review=%s. Assuming there are more patches to land from this bug." % (patch.bug_id(), patch.id(), patch.review()))
51 self._tool.bugs.close_bug_as_fixed(state["patch"].bug_id(), "All reviewed patches have been landed. Closing bug.")
updatechangelogswithreviewer.py 46 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]
  /external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
bug.py 90 def patches(self, include_obsolete=False): member in class: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)
    [all...]
  /bootable/recovery/applypatch/
main.c 48 // *patches (loading file contents into the patches). Returns 0 on
51 char*** sha1s, Value*** patches, int* num_patches) {
54 *patches = malloc(*num_patches * sizeof(Value*));
55 memset(*patches, 0, *num_patches * sizeof(Value*));
74 (*patches)[i] = NULL;
80 (*patches)[i] = malloc(sizeof(Value));
81 (*patches)[i]->type = VAL_BLOB;
82 (*patches)[i]->size = fc.size;
83 (*patches)[i]->data = (char*)fc.data
130 Value** patches; local
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
feeders.py 51 # should move to feeding patches one at a time like the EWS does.
56 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]
65 # Filters out patches with r? or r-, only r+ or no review are OK to land.
66 def _patches_with_acceptable_review_flag(self, patches):
67 return [patch for patch in patches if patch.review() in [None, '+']
    [all...]
feeders_unittest.py 79 patches = [MockPatch(1, None), MockPatch(2, '-'), MockPatch(3, "+")]
80 self.assertEquals([patch.id for patch in feeder._patches_with_acceptable_review_flag(patches)], [1, 3])
  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch_test.java 710 List<Patch> patches; local
741 LinkedList<Patch> patches; local
789 LinkedList<Patch> patches; local
809 LinkedList<Patch> patches; local
830 LinkedList<Patch> patches; local
    [all...]
diff_match_patch.java 1798 LinkedList<Patch> patches = new LinkedList<Patch>(); local
2199 List<Patch> patches = new LinkedList<Patch>(); local
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
download.py 137 def _collect_patches_by_bug(patches):
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_patches))))
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
203 help_text = "Apply and build patches from bugzilla
    [all...]
queries.py 66 # FIXME: This command is poorly named. It's fetching the commit-queue list here. The name implies it's fetching pending-commit (all r+'d patches).
73 name = "patches-in-commit-queue"
74 help_text = "List patches in the commit-queue"
77 patches = tool.bugs.queries.fetch_patches_from_commit_queue()
78 log("Patches in commit queue:")
79 for patch in patches:
84 name = "patches-to-commit-queue"
85 help_text = "Patches which should be added to the commit queue"
98 # We only need to worry about patches from contributers who are not yet committers.
105 patches = tool.bugs.queries.fetch_patches_from_pending_commit_list(
    [all...]
upload.py 68 help_text = "Clear r+ on obsolete patches so they do not appear in the pending-commit list."
70 # NOTE: This was designed to be generic, but right now we're only processing patches from the pending-commit list, so only r+ matters.
86 patches = bug.patches(include_obsolete=True)
87 for patch in patches:
98 help_text = "Clear r? on obsolete patches so they do not appear in the pending-commit list."
141 log("Bug %s has no non-obsolete patches, ignoring." % bug_id)
144 # We only need to do anything with this bug if one of the r+'d patches does not have a valid committer (cq+ set).
146 log("All reviewed patches on bug %s already have commit-queue+, ignoring." % bug_id)
443 error("Are you sure you want to create one bug with %s patches?" % len(commit_ids)
    [all...]
  /external/openssl/
import_openssl.sh 55 if [ ! -d patches ]; then
56 die "OpenSSL patch directory patches/ not found"
432 cp ../patches/testssl.sh android.testssl/
528 # Apply appropriate patches
530 if [ ! "$skip_patch" = "patches/$i" ]; then
532 patch -p1 --merge < ../patches/$i || die "Could not apply patches/$i. Fix source and run: $0 regenerate patches/$i"
561 echo "NOTE To make sure there are not unwanted changes from conflicting patches, be sure to review the generated patch."
  /external/webkit/Tools/Scripts/webkitpy/common/config/
committervalidator.py 93 def patches_after_rejecting_invalid_commiters_and_reviewers(self, patches):
94 return [patch for patch in patches if self._reject_patch_if_flags_are_invalid(patch)]
  /bootable/recovery/updater/
install.c 869 Value** patches = ReadValueVarArgs(state, argc-4, argv+4); local
873 if (patches[i*2]->type != VAL_STRING) {
877 if (patches[i*2+1]->type != VAL_BLOB) {
884 FreeValue(patches[i]);
886 free(patches);
892 patch_sha_str[i] = patches[i*2]->data;
893 patches[i*2]->data = NULL;
894 FreeValue(patches[i*2]);
895 patches[i] = patches[i*2+1]
    [all...]
  /external/chromium/testing/gmock/scripts/
upload.py 699 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)
802 ErrorExit("No valid patches found in output from svn diff")
    [all...]
  /external/chromium/testing/gtest/scripts/
upload.py 699 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)
802 ErrorExit("No valid patches found in output from svn diff")
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/scripts/
upload.py 699 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)
802 ErrorExit("No valid patches found in output from svn diff")
    [all...]
  /external/bison/build-aux/
vc-list-files 43 Report bugs and patches to <bug-gnulib@gnu.org>.
gnu-web-doc-update 45 Report bugs and patches to <bug-gnulib@gnu.org>.
  /ndk/build/tools/
dev-rebuild-ndk.sh 106 # Create a sha1 for any additional patches
108 if [ -d "$PROGDIR/toolchain-patches" ]
110 PATCHES_SHA1=`( find $PROGDIR/toolchain-patches -type f -print ) | \
  /prebuilts/devtools/tools/lib/
ninepatch.jar 
draw9patch.jar 
  /external/strace/
strace.spec 353 - disable s390 patches, they are already included
360 - port s390 patches from IBM
369 - clean up conflicting patches. This happened only
409 - version 4.2 (why are we keeping all these patches around?)
433 - strace 3.1 patches carried along for now.
  /external/v8/test/mjsunit/
debug-liveedit-2.js 56 // Instead it patches ChooseAnimal.

Completed in 1703 milliseconds

1 2