/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 115 Value** patches; local [all...] |
/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...] |
/hardware/broadcom/wlan/ |
.gitignore | 39 patches-* 42 patches
|
/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 | 51 if [ ! -d patches ]; then 52 die "OpenSSL patch directory patches/ not found" 133 cp ../patches/apps_Android.mk apps/Android.mk 134 cp ../patches/crypto_Android.mk crypto/Android.mk 135 cp ../patches/ssl_Android.mk ssl/Android.mk 158 cp ../patches/testssl.sh android.testssl/ 232 # Apply appropriate patches 234 if [ ! "$skip_patch" = "patches/$i" ]; then 236 patch -p1 < ../patches/$i || die "Could not apply patches/$i. Fix source and run: $0 regenerate patches/$i [all...] |
/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)]
|
/sdk/ninepatch/src/com/android/ninepatch/ |
NinePatchChunk.java | 306 * Finds the 9-patch patches and padding from a {@link BufferedImage} image that contains 419 * This returns both the fixed areas, and the patches (stretchable) areas. 439 List<Pair<Integer>> patches = new ArrayList<Pair<Integer>>(); local 446 patches.add(new Pair<Integer>(lastIndex, i)); 458 patches.add(new Pair<Integer>(lastIndex, pixels.length)); 463 if (patches.size() == 0) { 464 patches.add(new Pair<Integer>(1, pixels.length)); 469 return new Pair<List<Pair<Integer>>>(fixed, patches);
|
/external/bouncycastle/ |
import_bouncycastle.sh | 51 if [ ! -d patches ]; then 52 die "Bouncy Castle patch directory patches/ not found" 206 # Apply appropriate patches 209 patch -p1 < ../patches/$i || die "Could not apply patches/$i. Fix source and run: $0 regenerate patches/$i"
|
/sdk/draw9patch/src/com/android/draw9patch/ui/ |
ImageEditorPanel.java | 88 private List<Rectangle> patches; field in class:ImageEditorPanel 245 JCheckBox showPatches = new JCheckBox("Show patches"); 485 for (Rectangle rect : patches) { 504 for (Rectangle rect : patches) { 549 if (patches.size() == 0) { 597 r = patches.get(patchIndex++); 691 checkButton = new JButton("Show bad patches"); 757 checkButton.setText("Hide bad patches"); 759 checkButton.setText("Show bad patches"); 771 for (Rectangle patch : patches) { 1152 List<Pair<Integer>> patches = new ArrayList<Pair<Integer>>(); local [all...] |
/bootable/recovery/updater/ |
install.c | 926 Value** patches = ReadValueVarArgs(state, argc-4, argv+4); local 930 if (patches[i*2]->type != VAL_STRING) { 934 if (patches[i*2+1]->type != VAL_BLOB) { 941 FreeValue(patches[i]); 943 free(patches); 949 patch_sha_str[i] = patches[i*2]->data; 950 patches[i*2]->data = NULL; 951 FreeValue(patches[i*2]); 952 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...] |
/development/pdk/docs/source/ |
source_toc.cs | 27 <li><a href="<?cs var:toroot ?>source/submit-patches.html">Submitting Patches</a></li>
|
/external/strace/ |
strace.spec | 239 - disable s390 patches, they are already included 246 - port s390 patches from IBM 255 - clean up conflicting patches. This happened only 295 - version 4.2 (why are we keeping all these patches around?) 319 - strace 3.1 patches carried along for now.
|
/ndk/build/tools/ |
dev-rebuild-ndk.sh | 102 # Create a sha1 for any additional patches 104 if [ -d "$PROGDIR/toolchain-patches" ] 106 PATCHES_SHA1=`( find $PROGDIR/toolchain-patches -type f -print ) | \
|
/prebuilt/common/ninepatch/ |
ninepatch-prebuilt.jar | |