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

1 2 3 4 5 6 7 8

  /external/webkit/Tools/Scripts/webkitpy/common/net/bugzilla/
bug.py 91 return [patch for patch in self.attachments(include_obsolete)
92 if patch.is_patch()]
95 return [patch for patch in self.patches() if patch.review() == "?"]
98 patches = [patch for patch in self.patches() if patch.review() == "+"]
103 return filter(lambda patch: patch.reviewer(), patches
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
closebug.py 46 patches = self._tool.bugs.fetch_bug(state["patch"].bug_id()).patches()
47 for patch in patches:
48 if patch.review() == "?" or patch.review() == "+":
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 48 log("%s on bug %s, cannot infer reviewer." % (pluralize("reviewed patch", len(patches)), bug_id))
50 patch = patches[0]
51 log("Guessing \"%s\" as reviewer from attachment %s on bug %s." % (patch.reviewer().full_name, patch.id(), bug_id))
52 return patch.reviewer().full_name
56 if not bug_id and state.get("patch"):
57 bug_id = state.get("patch").bug_id()
  /external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
runPatchCommand.pl 37 $title = "runPatchCommand: Unsuccessful patch, forcing.";
39 # Since $patch has no "Index:" path, passing this to runPatchCommand
41 my $patch = <<'END';
42 Garbage patch contents
46 # patch: **** Only garbage was found in the patch input.
48 $exitStatus = callSilently(\&runPatchCommand, $patch, ".", "file_to_patch.txt", $argsHashRef);
58 $patch = <<END;
74 $exitStatus = runPatchCommand($patch, ".", $fileToPatch, $argsHashRef);
82 $exitStatus = runPatchCommand($patch, ".", $fileToPatch, $argsHashRef)
    [all...]
fixChangeLogPatchThenSetChangeLogDateAndReviewer.pl 36 testName => "New entry inserted earlier in the file, but after an entry with the same author and date, patch applied a day later.",
39 patch => <<'END',
83 my $patch = $testCase->{patch};
87 my $fixedChangeLog = VCSUtils::fixChangeLogPatch($patch);
88 my $got = VCSUtils::setChangeLogDateAndReviewer($fixedChangeLog->{patch}, $reviewer, $epochTime);
  /external/webkit/Source/WebKit/qt/Api/
qwebkitglobal.h 26 // QTWEBKIT_VERSION is (major << 16) + (minor << 8) + patch. Similar to Qt.
29 #define QTWEBKIT_VERSION_CHECK(major, minor, patch) ((major<<16)|(minor<<8)|(patch))
  /external/webkit/Tools/Scripts/
svn-unapply 33 # Differences from invoking "patch -p0 -R":
39 # Paths from Index: lines are used rather than the paths on the patch lines, which
43 # the patch before it is applied (svn-apply sets it when applying a patch).
44 # Handles binary files (requires patches made by svn-create-patch).
45 # Handles copied and moved files (requires patches made by svn-create-patch).
51 # Handle copied and moved directories (would require patches made by svn-create-patch).
52 # Use version numbers in the patch file and do a 3-way merge.
54 # Notice a patch that's being unapplied at the "wrong level" and make it work anyway.
55 # Do a dry run on the whole patch and don't do anything if part of the patch i
138 sub patch($) subroutine
    [all...]
  /bootable/recovery/applypatch/
imgpatch.c 17 // See imgdiff.c in this directory for a description of the patch file
33 * Apply the patch given in 'patch_filename' to the source data given
39 const Value* patch,
42 char* header = patch->data;
43 if (patch->size < 12) {
44 printf("patch too short to contain header\n");
52 printf("corrupt patch file header (magic number)\n");
61 if (pos + 4 > patch->size) {
65 int type = Read4(patch->data + pos);
69 char* normal_header = patch->data + pos
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/tool/commands/
queues.py 164 return tool.status_server.update_status(cls.name, message, state["patch"], failure_log)
204 def _update_status(self, message, patch=None, results_file=None):
205 return self._tool.status_server.update_status(self.name, message, patch, results_file)
211 patch = self._tool.bugs.fetch_attachment(patch_id)
212 if not patch:
213 # FIXME: Using a fake patch because release_work_item has the wrong API.
215 # mostly we just need to remove this bogus patch from our queue.
217 patch = Attachment({'id': patch_id}, None)
218 self._release_work_item(patch)
220 return patch
    [all...]
earlywarningsystem.py 43 def should_proceed_with_work_item(self, patch):
60 def _build(self, patch, first_run=False):
70 patch.id()]
82 def review_patch(self, patch):
83 if patch.is_obsolete():
84 self._did_error(patch, "%s does not process obsolete patches." % self.name)
87 if patch.bug().is_closed():
88 self._did_error(patch, "%s does not process patches on closed bugs." % self.name)
91 if not self._build(patch, first_run=True):
94 self._build(patch)
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/config/
committervalidator.py 75 def _validate_setter_email(self, patch, result_key, rejection_function):
76 committer = getattr(patch, result_key)()
79 setter_email = patch._attachment_dictionary.get("%s_email" % result_key)
81 rejection_function(patch.id(),
87 def _reject_patch_if_flags_are_invalid(self, patch):
89 patch, "reviewer", self.reject_patch_from_review_queue)
91 patch, "committer", self.reject_patch_from_commit_queue))
94 return [patch for patch in patches if self._reject_patch_if_flags_are_invalid(patch)]
    [all...]
  /external/bouncycastle/
import_bouncycastle.sh 45 echo " ./import_bouncycastle.sh regenerate <patch/*.patch>"
46 echo " ./import_bouncycastle.sh generate <patch/*.patch> </path/to/bcprov-jdk*-*.tar.gz>"
52 die "Bouncy Castle patch directory patches/ not found"
83 declare -r patch=$1
84 shift || usage "No patch file specified."
87 regenerate $patch
89 declare -r patch=$1
90 shift || usage "No patch file specified.
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/
PerspectiveLodCalculator.java 48 private TerrainPatch patch; field in class:PerspectiveLodCalculator
78 return calculateLod(patch, locations, updates);
84 float[] lodEntropies = patch.getLodEntropies();
92 Vector3f patchPos = getCenterLocation(patch);
94 // vector from camera to patch
100 for (int i = 0; i <= patch.getMaxLod(); i++) {
101 if (distance < entropyDistances[i] || i == patch.getMaxLod()){
103 if (i != patch.getLod()) {
107 int prevLOD = patch.getLod();
111 UpdatedTerrainPatch utp = updates.get(patch.getName())
    [all...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/picking/
BresenhamTerrainPicker.java 51 * all of the TerrainPatches hit (in distance order.) The triangles of each patch
89 TerrainPatch patch = pd.targetPatch; local
92 tracer.getGridSpacing().set(patch.getWorldScale());
93 tracer.setGridOrigin(patch.getWorldTranslation());
104 checkTriangles(loc.x, loc.y, workRay, intersection, patch, hit);
107 cr.setGeometry(patch);
115 while (loc.x >= -1 && loc.x <= patch.getSize() &&
116 loc.y >= -1 && loc.y <= patch.getSize()) {
121 if (checkTriangles(loc.x, loc.y, workRay, intersection, patch, hit)) {
125 cr.setGeometry(patch);
    [all...]
  /external/v8/test/cctest/
test-version.cc 39 void SetVersion(int major, int minor, int build, int patch,
44 Version::patch_ = patch;
53 int patch, bool candidate,
60 SetVersion(major, minor, build, patch, candidate, "");
68 SetVersion(major, minor, build, patch, candidate, soname);
  /frameworks/base/core/jni/android/graphics/
NinePatchPeeker.cpp 25 Res_png_9patch* patch = (Res_png_9patch*) data; local
26 size_t patchSize = patch->serializedSize();
30 memcpy(patchNew, patch, patchSize);
36 //printf("9patch: (%d,%d)-(%d,%d)\n",
41 // 'cause we don't want 565 predithered, since as a 9patch, we know
  /external/libnfc-nxp/src/
phLibNfcStatus.h 47 #define LIB_NFC_VERSION_SET(v,major,minor,patch,build) ((v) = \
50 ( ((patch) << 8) & 0x0000FF00 ) | \
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_version.h 45 Uint8 patch; member in struct:SDL_version
55 (X)->patch = SDL_PATCHLEVEL; \
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_version.h 45 Uint8 patch; member in struct:SDL_version
55 (X)->patch = SDL_PATCHLEVEL; \
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_version.h 45 Uint8 patch; member in struct:SDL_version
55 (X)->patch = SDL_PATCHLEVEL; \
  /prebuilts/tools/windows/sdl/host/include/SDL/
SDL_version.h 50 Uint8 patch; member in struct:SDL_version
60 (X)->patch = SDL_PATCHLEVEL; \
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_version.h 45 Uint8 patch; member in struct:SDL_version
55 (X)->patch = SDL_PATCHLEVEL; \
  /external/webkit/Tools/Scripts/webkitpy/tool/bot/
commitqueuetask_unittest.py 54 def command_passed(self, success_message, patch):
55 log("command_passed: success_message='%s' patch='%s'" % (
56 success_message, patch.id()))
58 def command_failed(self, failure_message, script_error, patch):
59 log("command_failed: failure_message='%s' script_error='%s' patch='%s'" % (
60 failure_message, script_error, patch.id()))
63 def refetch_patch(self, patch):
64 return patch
69 def report_flaky_tests(self, patch, flaky_results, results_archive):
71 log("report_flaky_tests: patch='%s' flaky_tests='%s' archive='%s'" % (patch.id(), flaky_tests, results_archive.filename)
    [all...]
  /external/skia/include/core/
SkGraphics.h 33 static void GetVersion(int32_t* major, int32_t* minor, int32_t* patch);
  /external/webkit/Tools/Scripts/webkitpy/common/net/
statusserver.py 62 def _add_patch(self, patch):
63 if not patch:
65 if patch.bug_id():
66 self._browser["bug_id"] = unicode(patch.bug_id())
67 if patch.id():
68 self._browser["patch_id"] = unicode(patch.id())
82 def _post_status_to_server(self, queue_name, status, patch, results_file):
93 self._add_patch(patch)
128 patch_status_url = "%s/next-patch/%s" % (self.url, queue_name)
131 def _post_release_work_item(self, queue_name, patch)
    [all...]

Completed in 413 milliseconds

1 2 3 4 5 6 7 8