Searched defs:patch (Results 1 - 25 of 59) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dsvn-unapply33 # 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 an
138 sub patch($) subroutine
[all...]
H A Dsvn-apply31 # "patch" script for WebKit Open Source Project, used to apply patches.
33 # Differences from invoking "patch -p0":
40 # Has mode where it will roll back to svn version numbers in the patch file so svn
42 # Paths from Index: lines are used rather than the paths on the patch lines, which
46 # Handles binary files (requires patches made by svn-create-patch).
47 # Handles copied and moved files (requires patches made by svn-create-patch).
53 # Handle copied and moved directories (would require patches made by svn-create-patch).
55 # Notice a patch that's being applied at the "wrong level" and make it work anyway.
56 # Do a dry run on the whole patch and don't do anything if part of the patch i
311 sub patch($) subroutine
[all...]
/external/chromium_org/v8/test/mjsunit/es6/
H A Dgenerators-debug-liveedit.js45 function patch(fun, from, to) { function
69 assertThrows(function() { patch(generator, "'Cat'", "'Capybara'") },
79 // At this point one iterator is live, but closed, so the patch will succeed.
80 patch(generator, "'Cat'", "'Capybara'");
89 assertThrows(function() { patch(generator, "'Capybara'", "'Tapir'") },
93 // Try to patch functions with activations inside and outside generator
108 assertThrows(function() { patch(fun_outside, "'Cat'", "'Cobra'") },
111 patch(fun_inside, "'Cat'", "'Koala'");
/external/chromium_org/chrome/installer/setup/
H A Darchive_patch_helper_unittest.cc51 base::FilePath patch = data_dir_.AppendASCII("archive.diff"); local
57 archive_helper.set_last_uncompressed_file(patch);
H A Dsetup_util.cc98 const base::FilePath& patch,
100 VLOG(1) << "Applying Courgette patch " << patch.value()
104 if (src.empty() || patch.empty() || dest.empty())
109 patch.value().c_str(),
115 << "Failed to apply Courgette patch " << patch.value()
123 const base::FilePath& patch,
125 VLOG(1) << "Applying bsdiff patch " << patch
97 CourgettePatchFiles(const base::FilePath& src, const base::FilePath& patch, const base::FilePath& dest) argument
122 BsdiffPatchFiles(const base::FilePath& src, const base::FilePath& patch, const base::FilePath& dest) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/
H A Dentry_x86_tls.h96 char patch[8] = { local
102 *((unsigned long *) (patch + 2)) = x86_current_tls();
105 memcpy(entry, patch, sizeof(patch));
/external/chromium_org/third_party/skia/src/animator/
H A DSkDraw3D.h35 Sk3D_Patch* patch; member in class:Sk3D_Camera
/external/mesa3d/src/mapi/mapi/
H A Dentry_x86_tls.h96 char patch[8] = { local
102 *((unsigned long *) (patch + 2)) = x86_current_tls();
105 memcpy(entry, patch, sizeof(patch));
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_version.h50 Uint8 patch; member in struct:SDL_version
61 (X)->patch = SDL_PATCHLEVEL; \
/external/skia/src/animator/
H A DSkDraw3D.h35 Sk3D_Patch* patch; member in class:Sk3D_Camera
/external/chromium_org/third_party/mesa/src/src/glx/apple/
H A Dapple_glx.c103 int major, minor, patch; local
108 if (!XAppleDRIQueryVersion(dpy, &major, &minor, &patch))
/external/chromium_org/third_party/skia/src/core/
H A DSkGraphics.cpp31 void SkGraphics::GetVersion(int32_t* major, int32_t* minor, int32_t* patch) { argument
38 if (patch) {
39 *patch = SKIA_VERSION_PATCH;
H A DSkMaskFilter.cpp210 // Attempt to speed up drawing by creating a nine patch. If a nine patch
213 NinePatch patch; local
214 patch.fMask.fImage = NULL;
217 &patch)) {
218 SkASSERT(NULL == patch.fMask.fImage);
221 draw_nine(patch.fMask, patch.fOuterRect, patch.fCenter, true, clip, blitter);
222 SkMask::FreeImage(patch
235 NinePatch patch; local
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-version.cc39 void SetVersion(int major, int minor, int build, int patch, argument
44 Version::patch_ = patch;
53 int patch, bool candidate,
60 SetVersion(major, minor, build, patch, candidate, "");
68 SetVersion(major, minor, build, patch, candidate, soname);
52 CheckVersion(int major, int minor, int build, int patch, bool candidate, const char* expected_version_string, const char* expected_generic_soname) argument
/external/mesa3d/src/glx/apple/
H A Dapple_glx.c103 int major, minor, patch; local
108 if (!XAppleDRIQueryVersion(dpy, &major, &minor, &patch))
/external/skia/src/core/
H A DSkGraphics.cpp31 void SkGraphics::GetVersion(int32_t* major, int32_t* minor, int32_t* patch) { argument
38 if (patch) {
39 *patch = SKIA_VERSION_PATCH;
H A DSkMaskFilter.cpp210 // Attempt to speed up drawing by creating a nine patch. If a nine patch
213 NinePatch patch; local
214 patch.fMask.fImage = NULL;
217 &patch)) {
218 SkASSERT(NULL == patch.fMask.fImage);
221 draw_nine(patch.fMask, patch.fOuterRect, patch.fCenter, true, clip, blitter);
222 SkMask::FreeImage(patch
235 NinePatch patch; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
H A Dxa_tracker.c429 xa_tracker_version(int *major, int *minor, int *patch) argument
433 *patch = XA_TRACKER_VERSION_PATCH;
/external/mesa3d/src/gallium/state_trackers/xa/
H A Dxa_tracker.c429 xa_tracker_version(int *major, int *minor, int *patch) argument
433 *patch = XA_TRACKER_VERSION_PATCH;
/external/chromium_org/courgette/
H A Densemble_apply.cc5 // This file contains the code to apply a Courgette patch.
22 // multi-stage patch.
308 SourceStream* patch,
313 status = patch_process.ReadHeader(patch);
325 // The rest of the patch stream is a StreamSet.
327 patch_streams.Init(patch);
384 // First read enough of the patch file to validate the header is well-formed.
391 // 'Dry-run' the first step of the patch process to validate format of header.
405 // Apply patch on streams.
307 ApplyEnsemblePatch(SourceStream* base, SourceStream* patch, SinkStream* output) argument
/external/chromium_org/third_party/skia/src/utils/
H A DSkCamera.cpp353 SkPatch3D patch; local
354 patch.transform(fRec->fMatrix);
355 return patch.dotWith(x, y, z);
360 SkPatch3D patch; local
361 patch.transform(fRec->fMatrix);
362 fCamera.patchToMatrix(patch, matrix);
/external/skia/src/utils/
H A DSkCamera.cpp353 SkPatch3D patch; local
354 patch.transform(fRec->fMatrix);
355 return patch.dotWith(x, y, z);
360 SkPatch3D patch; local
361 patch.transform(fRec->fMatrix);
362 fCamera.patchToMatrix(patch, matrix);
/external/aac/libSBRdec/src/
H A Dlpp_tran.cpp240 int patch; local
278 (because the last patch would be too short).
295 /* init bwIndex for each patch */
606 patch = 0;
608 while ( patch < pSettings->noOfPatches ) { /* inner loop over every patch */
610 int hiBand = loBand + patchParam[patch].targetBandOffs;
612 if ( loBand < patchParam[patch].sourceStartBand
613 || loBand >= patchParam[patch].sourceStopBand
616 /* Lowband not in current patch
852 int i, patch; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_driver.h47 unsigned patch : 1; /* patch constant value */ member in struct:nv50_ir_varying
H A Dnv50_ir_from_sm4.cpp684 struct nv50_ir_varying *patch; local
702 info.in[r].patch = 0;
744 info.out[r].patch = 0;
795 patch = &info.in[info.numInputs];
797 patch = &info.out[info.numOutputs];
802 patch[r].mask |= sm4.params_patch[i].Mask;
803 patch[r].id = r;
804 if (patch[r].regular) // already visited
806 patch[r].regular = 1;
807 patch[
[all...]

Completed in 486 milliseconds

123