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

1 2

  /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...]
svn-apply 31 # "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
306 sub patch($) subroutine
    [all...]
  /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);
38 //printf("9patch: (%d,%d)-(%d,%d)\n",
44 // 'cause we don't want 565 predithered, since as a 9patch, we know
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_version.h 45 Uint8 patch; member in struct:SDL_version
55 (X)->patch = SDL_PATCHLEVEL; \
  /external/skia/src/animator/
SkDraw3D.h 43 Sk3D_Patch* patch; member in class:Sk3D_Camera
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_version.h 45 Uint8 patch; member in struct:SDL_version
55 (X)->patch = SDL_PATCHLEVEL; \
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_version.h 45 Uint8 patch; member in struct:SDL_version
55 (X)->patch = SDL_PATCHLEVEL; \
  /prebuilt/windows/sdl/host/include/SDL/
SDL_version.h 50 Uint8 patch; member in struct:SDL_version
60 (X)->patch = SDL_PATCHLEVEL; \
  /prebuilt/windows/sdl/include/SDL/
SDL_version.h 45 Uint8 patch; member in struct:SDL_version
55 (X)->patch = SDL_PATCHLEVEL; \
  /external/skia/gpu/src/
GrDrawMesh.cpp 125 SkBoundaryPatch patch; local
126 patch.setBoundary(&cubic);
131 patch.evalPatch(pts, Rows, Cols);
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/
mock.py 56 'patch',
294 def patch(target, new=DEFAULT, spec=None, create=False): function
298 raise TypeError("Need a valid target to patch. You supplied: %r" % (target,))
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_feature_matching.h 31 DB_API void db_SignedSquareNormCorr21x21_PreAlign_u(short *patch,const unsigned char * const *f_img,int x_f,int y_f,float *sum,float *recip);
32 DB_API void db_SignedSquareNormCorr11x11_PreAlign_u(short *patch,const unsigned char * const *f_img,int x_f,int y_f,float *sum,float *recip);
49 of image patch*/
52 /*Pointer to patch layout*/
53 const float *patch; member in class:db_PointInfo_f
76 of image patch*/
79 /*Pointer to patch layout*/
80 const short *patch; member in class:db_PointInfo_u
165 * then the correlation patches themselves are warped before being placed in the patch space.
  /external/skia/src/utils/
SkCamera.cpp 401 SkPatch3D patch; local
402 patch.transform(fRec->fMatrix);
403 return patch.dotWith(x, y, z);
408 SkPatch3D patch; local
409 patch.transform(fRec->fMatrix);
410 fCamera.patchToMatrix(patch, matrix);
  /external/webkit/Source/JavaScriptCore/assembler/
LinkBuffer.h 112 void patch(DataLabelPtr label, void* value) function in class:JSC::LinkBuffer
118 void patch(DataLabelPtr label, CodeLocationLabel value) function in class:JSC::LinkBuffer
  /frameworks/base/media/libstagefright/codecs/aacdec/
sbr_generate_high_freq.cpp 208 struct PATCH *Patch,
213 Int32 patch; local
342 /* First patch */
347 patch = 0;
354 Patch->targetStartBand[patch] = targetStopBand;
356 numBandsInPatch = goalSb - targetStopBand; /* get the desired range of the patch */
360 /* desired number bands are not available -> patch whole source range */
397 if ((numBandsInPatch < 3) && (patch > 0)
    [all...]
  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch.java 2 * Diff Match and Patch
5 * http://code.google.com/p/google-diff-match-patch/
40 * Functions for diff, match and patch.
41 * Computes the difference between two texts to create a patch.
42 * Applies the patch onto another text, allowing for errors.
48 * Class containing the diff, match and patch methods.
1802 Patch patch = new Patch(); local
2029 Patch patch = patches.getFirst(); local
2079 Patch patch; local
2205 Patch patch; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11modes.c 434 int major, minor, patch, version; local
435 major = 0; minor = 0; patch = 0;
436 fscanf(metro_fp, "%d.%d.%d", &major, &minor, &patch);
438 version = major*100+minor*10+patch;
    [all...]
  /external/skia/samplecode/
SamplePatch.cpp 54 class Patch {
56 Patch() { sk_bzero(fPts, sizeof(fPts)); }
57 ~Patch() {}
131 void Patch::draw(SkCanvas* canvas, const SkPaint& paint, int nu, int nv,
212 Patch* patch) {
216 patch->draw(canvas, paint, 10, 10, false, false);
218 patch->draw(canvas, paint, 10, 10, true, false);
220 patch->draw(canvas, paint, 10, 10, false, true);
222 patch->draw(canvas, paint, 10, 10, true, true)
282 Patch patch; local
    [all...]
SampleWarp.cpp 133 SkBoundaryPatch patch; local
134 patch.setBoundary(&cubic);
139 patch.evalPatch(pts, Rows, Cols);
176 SkBoundaryPatch patch; local
177 patch.setBoundary(&cubic);
182 patch.evalPatch(pts, Rows, Cols);
  /bootable/recovery/applypatch/
applypatch.c 595 // entries in <patch_sha1_str>, the corresponding patch from
597 // new file (the type of patch is automatically detected from the
619 printf("\napplying patch to %s\n", source_filename);
642 // The early-exit case: the patch was already applied, this file
644 printf("\"%s\" is already target; no patch needed\n",
783 const Value* patch; local
786 patch = source_patch_value;
789 patch = copy_patch_value;
792 if (patch->type != VAL_BLOB) {
793 printf("patch is not a blob\n")
    [all...]
  /cts/apps/CtsVerifier/lib/colorchecker/
colorchecker.cpp 33 // part of the same patch
412 // should both be within bounds for a roughly square patch.
533 // Output average patch colors if requested
543 PixelGroup &patch = groups[id - 1]; local
546 patch.getBoundingBox(&startX, &startY, &endX, &endY);
581 // Print out patch colors
671 // Mark found grid patch pixels
679 // Fill patch pixels with blue
  /external/bluetooth/bluez/tools/
hciattach_ath3k.c 532 struct patch_entry patch; local
535 patch.len = MAX_PATCH_CMD;
537 patch.len = byte_cnt;
539 for (i = 0; i < patch.len; i++) {
543 patch.data[i] = strtoul(byte, NULL, 16);
546 load_hci_ps_hdr(cmd, WRITE_PATCH, patch.len, patch_count);
547 memcpy(&cmd[HCI_PS_CMD_HDR_LEN], patch.data, patch.len);
549 if (write_cmd(fd, cmd, patch.len + HCI_PS_CMD_HDR_LEN) < 0)
844 * It is not necessary that Patch file be available
    [all...]
  /external/freetype/src/base/
ftobjs.c 4399 FT_Int patch = 0; local
    [all...]
  /external/v8/src/
ic.cc 437 // Patch the receiver and use the delegate as the function to
772 // Patch the call site depending on the state of the cache.
1981 void TRBinaryOpIC::patch(Code* code) { function in class:v8::internal::TRBinaryOpIC
    [all...]
  /frameworks/base/core/jni/
android_view_GLES20Canvas.cpp 385 Res_png_9patch* patch = reinterpret_cast<Res_png_9patch*>(storage); local
386 Res_png_9patch::deserialize(patch);
388 renderer->drawPatch(bitmap, &patch->xDivs[0], &patch->yDivs[0],
389 &patch->colors[0], patch->numXDivs, patch->numYDivs, patch->numColors,
    [all...]

Completed in 729 milliseconds

1 2