HomeSort by relevance Sort by last modified time
    Searched refs:patch (Results 26 - 50 of 93) sorted by null

12 3 4

  /external/v8/src/
version.h 58 friend void SetVersion(int major, int minor, int build, int patch,
  /bootable/recovery/applypatch/
applypatch.h 27 } Patch;
70 const Value* patch, ssize_t patch_offset,
73 const Value* patch, ssize_t patch_offset,
78 const Value* patch,
applypatch.sh 85 run_command rm $WORK_DIR/patch.bsdiff
155 # --------------- apply patch ----------------------
158 $ADB push $DATA_DIR/patch.bsdiff $WORK_DIR
162 # Check that the partition has enough space to apply the patch without
169 echo "Not enough space on /$WORK_FS to patch test file."
177 testname "apply bsdiff patch"
178 run_command $WORK_DIR/applypatch $WORK_DIR/old.file - $NEW_SHA1 $NEW_SIZE $BAD1_SHA1:$WORK_DIR/foo $OLD_SHA1:$WORK_DIR/patch.bsdiff || fail
182 testname "reapply bsdiff patch"
183 run_command $WORK_DIR/applypatch $WORK_DIR/old.file - $NEW_SHA1 $NEW_SIZE $BAD1_SHA1:$WORK_DIR/foo $OLD_SHA1:$WORK_DIR/patch.bsdiff || fail
188 # --------------- apply patch in new location ---------------------
    [all...]
applypatch.c 576 // entries in <patch_sha1_str>, the corresponding patch from
578 // new file (the type of patch is automatically detected from the
600 printf("\napplying patch to %s\n", source_filename);
622 // The early-exit case: the patch was already applied, this file
624 printf("\"%s\" is already target; no patch needed\n",
761 const Value* patch; local
764 patch = source_patch_value;
767 patch = copy_patch_value;
770 if (patch->type != VAL_BLOB) {
771 printf("patch is not a blob\n")
    [all...]
  /sdk/draw9patch/src/com/android/draw9patch/ui/
ImageEditorPanel.java 195 label.setText("Patch scale: ");
752 for (Rectangle patch : patches) {
753 if (corruptPatch(patch)) {
754 corruptedPatches.add(patch);
758 for (Rectangle patch : horizontalPatches) {
759 if (corruptHorizontalPatch(patch)) {
760 corruptedPatches.add(patch);
764 for (Rectangle patch : verticalPatches) {
765 if (corruptVerticalPatch(patch)) {
766 corruptedPatches.add(patch);
    [all...]
  /external/dropbear/debian/
rules 28 patch: deb-checkdir patch-stamp
29 patch-stamp:
31 patch -p0 <$$i || exit 1; \
33 touch patch-stamp
35 config.status: patch-stamp configure
50 test ! -e patch-stamp || \
52 patch -p0 -R <$$i; \
54 rm -f patch-stamp build-stamp config.log config.status
105 .PHONY: patch build clean install binary-indep binary-arch binar
    [all...]
  /external/skia/src/animator/
SkDraw3D.h 43 Sk3D_Patch* patch; member in class:Sk3D_Camera
SkDraw3D.cpp 47 SK_MEMBER(patch, 3D_Patch),
55 Sk3D_Camera::Sk3D_Camera() : hackWidth(0), hackHeight(0), patch(NULL) {
64 fCamera.patchToMatrix(patch->fPatch, &matrix);
  /external/webkit/WebKitTools/Scripts/webkitperl/VCSUtils_unittest/
parsePatch.pl 42 my $patch = <<'END',
89 open($fileHandle, "<", \$patch);
  /external/webkit/WebKitTools/Scripts/webkitpy/commands/
download.py 103 for patch in patches:
104 bugs_to_patches[patch.bug_id()] = bugs_to_patches.get(patch.bug_id(), []) + [patch]
113 log("Processing %s from %s." % (pluralize("patch", len(patches)), pluralize("bug", len(bugs_to_patches))))
115 for patch in patches:
116 self._process_patch(patch, options, args, tool)
133 def _process_patch(self, patch, options, args, tool):
134 state = { "patch" : patch }
    [all...]
upload.py 63 def _flags_to_clear_on_patch(self, patch):
64 if not patch.is_obsolete():
67 if patch.review() == "+":
68 if patch.reviewer():
69 what_was_cleared.append("%s's review+" % patch.reviewer().full_name)
79 for patch in patches:
80 flags_to_clear = self._flags_to_clear_on_patch(patch)
83 message = "Cleared %s from obsolete attachment %s so that this bug does not appear in http://webkit.org/pending-commit." % (flags_to_clear, patch.id())
84 self.tool.bugs.obsolete_attachment(patch.id(), message)
89 help_text = "Assign bug to whoever attached the most recent r+'d patch"
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
scm_unittest.py 166 patch_path = os.path.join(self.svn_checkout_path, 'patch.diff')
168 patch = {}
169 patch['reviewer'] = 'Joe Cool'
170 patch['bug_id'] = '12345'
171 patch['url'] = 'file://%s' % urllib.pathname2url(patch_path)
172 return Attachment(patch, None) # FIXME: This is a hack, scm.py shouldn't be fetching attachment data.
200 # Patch formats are slightly different between svn and git, so just regexp for things we know should be there.
213 GIT binary patch
241 GIT binary patch
269 GIT binary patch
    [all...]
bugzilla.py 83 patch.attacher_email())
162 return [patch for patch in self.attachments(include_obsolete)
163 if patch.is_patch()]
166 return [patch for patch in self.patches() if patch.review() == "?"]
169 patches = [patch for patch in self.patches() if patch.review() == "+"
    [all...]
diff_parser_unittest.py 142 patch = p.sub(lambda x: " %s/" % prefix[x.group(1)], self._PATCH)
143 self.test_diff_parser(diff_parser.DiffParser(patch.splitlines()))
stepsequence.py 39 def handle_script_error(cls, tool, patch, script_error):
  /ndk/build/tools/
patch-sources.sh 18 # Script used to patch a source directory from a series of patches
25 "Patch a target source directory with a series of patches taken
27 is found under <patches-dir>/subdir/foo.patch will be applied with
28 'patch -p1' in <src-dir>/subdir.
60 PATCHES=`(cd $PATCHES_DIR && find . -name "*.patch") 2> /dev/null`
66 for PATCH in $PATCHES; do
67 PATCHDIR=`dirname $PATCH`
68 PATCHNAME=`basename $PATCH`
70 cd $SRC_DIR/$PATCHDIR && patch -p1 < $PATCHES_DIR/$PATCH
    [all...]
  /external/webkit/WebKitTools/Scripts/
svn-create-patch 202 my $patch;
208 $patch .= $_;
211 $patch = fixChangeLogPatch($patch) if basename($file) eq "ChangeLog";
212 print $patch if $patch;
214 print "\n" if ($patch && $patch =~ m/\n\S+$/m);
webkit-tools-completion.sh 91 complete -F _webkit-patch_complete webkit-patch
resolve-ChangeLogs 310 my $patch;
312 # Read in patch for incorrectly merged ChangeLog entry
316 $patch = <GIT>;
324 # The patch must have 0 or more lines of context, then 1 or more lines
326 if ($patch =~ /\n@@ -(\d+),(\d+) \+(\d+),(\d+) @@\n( .*\n)*((\+.*\n)+)( .*\n)+$/m) {
327 # Copy the header from the original patch.
328 my $newPatch = substr($patch, 0, index($patch, "@@ -${1},${2} +${3},${4} @@"));
330 # Generate a new set of line numbers and patch lengths. Our new
331 # patch will start with the lines for the fixed ChangeLog entry
    [all...]
VCSUtils.pm 239 # Some users have a workflow where svn-create-patch, svn-apply and
364 # Convert a line of a git-formatted patch to SVN format, while
450 # The "from" clause is created by svn-create-patch, in
484 # Parse one diff from a patch file created by svn-create-patch, and
516 # Then assume all diffs in the patch are Git-formatted. This
518 # all diffs in the patch are formatted the same (SVN or Git).
548 # Parse a patch file created by svn-create-patch.
551 # $fileHandle: A file handle to the patch file that has not yet bee
    [all...]
  /external/webkit/WebKitTools/QueueStatusServer/
main.py 38 from handlers.patch import Patch
51 (r'/patch-status/(.*)/(.*)', PatchStatus),
52 (r'/patch/(.*)', Patch),
  /external/strace/
Android.mk 21 # patch that was used to add ARM support actually adds the ARM syscalls to
  /external/webkit/JavaScriptCore/assembler/
LinkBuffer.h 99 void patch(DataLabelPtr label, void* value) function in class:JSC::LinkBuffer
104 void patch(DataLabelPtr label, CodeLocationLabel value) function in class:JSC::LinkBuffer
  /external/dnsmasq/contrib/Suse/
dnsmasq-suse.spec 42 patch -p0 <rpm/%{name}-SuSE.patch
  /frameworks/base/graphics/java/android/graphics/drawable/
NinePatchDrawable.java 58 * Create drawable from raw nine-patch data, not dealing with density.
68 * Create drawable from raw nine-patch data, setting initial target density
78 * Create drawable from existing nine-patch, not dealing with density.
83 public NinePatchDrawable(NinePatch patch) {
84 this(new NinePatchState(patch, new Rect()), null);
88 * Create drawable from existing nine-patch, setting initial target density
91 public NinePatchDrawable(Resources res, NinePatch patch) {
92 this(new NinePatchState(patch, new Rect()), res);
188 Log.v("9patch", "Drawing 9-patch @ " + pts[0] + "," + pts[1] + ": " + getBounds())
    [all...]

Completed in 954 milliseconds

12 3 4