HomeSort by relevance Sort by last modified time
    Searched full:clip (Results 76 - 100 of 617) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/skia/src/core/
SkBlitter_RGB16.cpp 206 const SkIRect& SK_RESTRICT clip)
209 SkRGB16_Black_BlitBW(fDevice, mask, clip);
211 uint16_t* SK_RESTRICT device = fDevice.getAddr16(clip.fLeft, clip.fTop);
212 const uint8_t* SK_RESTRICT alpha = mask.getAddr(clip.fLeft, clip.fTop);
213 unsigned width = clip.width();
214 unsigned height = clip.height();
376 const SkIRect& SK_RESTRICT clip) SK_RESTRICT {
378 SkRGB16_BlitBW(fDevice, mask, clip, fColor16)
    [all...]
SkSpriteBlitter.h 39 virtual void blitMask(const SkMask&, const SkIRect& clip);
  /external/skia/include/images/
SkFlipPixelRef.h 55 // Helper to copy pixels from srcAddr to the dst bitmap, clipped to clip.
57 static void CopyBitsFromAddr(const SkBitmap& dst, const SkRegion& clip,
  /external/webkit/WebCore/platform/graphics/skia/
SkiaUtils.h 66 // will cover the same area as the source rectangle. It will clip to the canvas'
67 // clip, doing the necessary coordinate transforms.
  /frameworks/base/awt/org/apache/harmony/awt/wtk/
GraphicsFactory.java 48 * @param clip Clipping area for a new Graphics2D instance
53 Graphics2D getGraphics2D(NativeWindow win, int translateX, int translateY, MultiRectArea clip);
  /external/quake/quake/src/QW/client/
r_drawa.s 56 #define clip 12+12 define
69 movl clip(%esp),%ebx
73 // if (clip)
83 // d0 = DotProduct (pv0->position, clip->normal) - clip->dist;
84 // d1 = DotProduct (pv1->position, clip->normal) - clip->dist;
126 // R_ClipEdge (&clipvert, pv1, clip->next);
129 // } while ((clip = clip->next) != NULL)
    [all...]
  /external/quake/quake/src/WinQuake/
r_drawa.s 56 #define clip 12+12 define
69 movl clip(%esp),%ebx
73 // if (clip)
83 // d0 = DotProduct (pv0->position, clip->normal) - clip->dist;
84 // d1 = DotProduct (pv1->position, clip->normal) - clip->dist;
126 // R_ClipEdge (&clipvert, pv1, clip->next);
129 // } while ((clip = clip->next) != NULL)
    [all...]
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
Clip.java 22 public interface Clip extends DataLine {
  /dalvik/vm/mterp/armv5te/
OP_FLOAT_TO_INT.S 11 * We have to clip values to int min/max per the specification. The
OP_FLOAT_TO_LONG.S 9 * We have to clip values to long min/max per the specification. The
  /dalvik/vm/mterp/armv6t2/
OP_FLOAT_TO_INT.S 11 * We have to clip values to int min/max per the specification. The
OP_FLOAT_TO_LONG.S 9 * We have to clip values to long min/max per the specification. The
  /external/skia/src/svg/
SkSVGClipPath.cpp 33 parser._startElement("clip");
SkSVGPolygon.cpp 22 SVG_LITERAL_ATTRIBUTE(clip-rule, f_clipRule),
SkSVGPolyline.cpp 28 SVG_LITERAL_ATTRIBUTE(clip-rule, f_clipRule),
SkSVGUse.cpp 37 parser._endElement(); // clip
  /external/webkit/WebCore/plugins/symbian/
PluginContainerSymbian.h 35 void requestGeometry(const QRect&, const QRegion& clip = QRegion());
  /external/webkit/WebCore/rendering/
RenderSVGContainer.cpp 93 // Let the RenderSVGViewportContainer subclass clip if necessary
117 // to avoid our clip killing our outline rect. Thus we translate our
120 // We should instead disable our clip during PaintPhaseOutline
169 // Give RenderSVGViewportContainer a chance to apply its viewport clip
  /external/webkit/WebCore/svg/graphics/
SVGResourceClipper.cpp 65 // FIXME: We need a different calculation for other clip content than paths.
113 // We don't currently allow for heterogenous clip rules.
114 // we would have to detect such, draw to a mask, and then clip
132 ts << " [clip data=" << clipData().clipData() << "]";
  /frameworks/base/libs/surfaceflinger/
LayerBuffer.h 43 virtual void onDraw(const Region& clip) const;
69 virtual void onDraw(const Region& clip) const;
133 virtual void onDraw(const Region& clip) const;
157 virtual void onDraw(const Region& clip) const;
  /frameworks/base/tests/BrowserTestPlugin/jni/event/
EventPlugin.h 38 void drawPlugin(const ANPBitmap& bitmap, const ANPRectI& clip);
  /external/opencore/codecs_v2/video/avc_h264/enc/src/
block.cpp 229 if ((uint)r0 > 0xFF) r0 = 0xFF & (~(r0 >> 31)); /* clip */
231 if ((uint)r1 > 0xFF) r1 = 0xFF & (~(r1 >> 31)); /* clip */
233 if ((uint)r2 > 0xFF) r2 = 0xFF & (~(r2 >> 31)); /* clip */
235 if ((uint)r3 > 0xFF) r3 = 0xFF & (~(r3 >> 31)); /* clip */
313 if ((uint)r0 > 0xFF) r0 = 0xFF & (~(r0 >> 31)); /* clip */
316 if ((uint)r1 > 0xFF) r1 = 0xFF & (~(r1 >> 31)); /* clip */
319 if ((uint)r2 > 0xFF) r2 = 0xFF & (~(r2 >> 31)); /* clip */
322 if ((uint)r3 > 0xFF) r3 = 0xFF & (~(r3 >> 31)); /* clip */
665 if ((uint)r0 > 0xFF) r0 = 0xFF & (~(r0 >> 31)); /* clip */
667 if ((uint)r1 > 0xFF) r1 = 0xFF & (~(r1 >> 31)); /* clip */
    [all...]
  /external/webkit/WebCore/inspector/front-end/
TextEditorModel.js 203 var clip = [];
205 clip.push(this._lines[range.startLine].substring(range.startColumn, range.endColumn));
206 return clip.join("\n");
208 clip.push(this._lines[range.startLine].substring(range.startColumn));
210 clip.push(this._lines[i]);
211 clip.push(this._lines[range.endLine].substring(0, range.endColumn));
212 return clip.join("\n");
  /external/opencore/codecs_v2/utilities/colorconvert/src/
cczoomrotation12.cpp 384 //clip
556 DisplayProperties *disp, uint8 *clip, uint8 *pErr_horz)
635 tmp0 = clip[tmp0>>16];
636 tmp1 = clip[tmp1>>16];
637 tmp2 = clip[tmp2>>16];
674 tmp0 = clip[tmp0>>16];
675 tmp1 = clip[tmp1>>16];
676 tmp2 = clip[tmp2>>16];
721 tmp0 = clip[tmp0>>16];
722 tmp1 = clip[tmp1>>16]
    [all...]
  /external/webkit/WebCore/platform/graphics/qt/
FontQt.cpp 119 QRectF clip(point.x() + x1, point.y() - ascent, x2 - x1, fm.height());
122 // TODO: when blur support is added, the clip will need to account
133 // expand the clip rect to include the text shadow as well
134 clip.adjust(dx1, dx2, dy1, dy2);
137 p->setClipRect(clip.toRect());

Completed in 1331 milliseconds

1 2 34 5 6 7 8 91011>>