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

12 3 4 5 6 7 8 91011>>

  /external/skia/src/core/
SkEdgeBuilder.h 16 int build(const SkPath& path, const SkIRect* clip, int shiftUp);
SkScanPriv.h 26 SkScanClipper(SkBlitter* blitter, const SkRegion* clip, const SkIRect& bounds);
38 // clipRect == null means path is entirely inside the clip
45 const SkRegion& clip);
SkBlitter_ARGB32.cpp 28 const SkIRect& clip, const SkBitmap& device,
146 void SkARGB32_Blitter::blitMask(const SkMask& mask, const SkIRect& clip) {
147 SkASSERT(mask.fBounds.contains(clip));
155 SkARGB32_BlendBW(fDevice, mask, clip, fPMColor, SkAlpha255To256(255 - fSrcA));
159 int x = clip.fLeft;
160 int y = clip.fTop;
161 int width = clip.width();
162 int height = clip.height();
183 const SkIRect& clip) {
184 SkASSERT(mask.fBounds.contains(clip));
    [all...]
SkMaskFilter.cpp 31 const SkRegion& clip, SkBounder* bounder,
36 if (!SkDraw::DrawToMask(devPath, &clip.getBounds(), this, &matrix, &srcM,
48 SkRegion::Cliperator clipper(clip, dstM.fBounds);
SkBlitter.cpp 108 void SkBlitter::blitMask(const SkMask& mask, const SkIRect& clip)
110 SkASSERT(mask.fBounds.contains(clip));
114 int cx = clip.fLeft;
115 int cy = clip.fTop;
118 int height = clip.height();
122 if (cx == maskLeft && clip.fRight == mask.fBounds.fRight)
135 int rite_edge = clip.fRight - maskLeft;
179 int width = clip.width();
182 const uint8_t* aa = mask.getAddr(clip.fLeft, clip.fTop)
    [all...]
SkEdge.cpp 35 int SkEdge::setLine(const SkPoint& p0, const SkPoint& p1, const SkIRect* clip,
70 // are we completely above or below the clip?
71 if (NULL != clip && (top >= clip->fBottom || bot <= clip->fTop)) {
85 if (clip) {
86 this->chopLineWithClip(*clip);
125 void SkEdge::chopLineWithClip(const SkIRect& clip)
129 SkASSERT(top < clip.fBottom);
131 // clip the line to the to
    [all...]
SkScan_AntiPath.cpp 34 const SkRegion& clip);
57 const SkRegion& clip) {
60 // take the union of the ir bounds and clip, since we may be called with an
62 const int left = SkMin32(ir.fLeft, clip.getBounds().fLeft);
63 const int right = SkMax32(ir.fRight, clip.getBounds().fRight);
75 const SkRegion& clip);
91 const SkRegion& clip)
92 : BaseSuperBlitter(realBlitter, ir, clip) {
197 const SkRegion& clip);
227 const SkRegion& clip)
    [all...]
SkEdgeBuilder.cpp 84 SkRect clip; local
85 setShiftedClip(&clip, *iclip, shiftUp);
97 int lineCount = SkLineClipper::ClipLine(pts, clip, lines);
104 if (clipper.clipQuad(pts, clip)) {
109 if (clipper.clipCubic(pts, clip)) {
SkBlitter_A8.cpp 138 void SkA8_Blitter::blitMask(const SkMask& mask, const SkIRect& clip)
146 SkA8_BlitBW(fDevice, mask, clip);
148 SkA8_BlendBW(fDevice, mask, clip, fSrcA, SkAlpha255To256(255 - fSrcA));
152 int x = clip.fLeft;
153 int y = clip.fTop;
154 int width = clip.width();
155 int height = clip.height();
360 void SkA8_Shader_Blitter::blitMask(const SkMask& mask, const SkIRect& clip)
364 this->INHERITED::blitMask(mask, clip);
368 int x = clip.fLeft
    [all...]
  /frameworks/base/core/res/res/drawable/
progress_horizontal.xml 33 <clip>
44 </clip>
48 <clip>
59 </clip>
  /frameworks/base/awt/org/apache/harmony/awt/gl/render/
JavaLineRasterizer.java 357 void rasterize(int[] clip, int index) {
358 int cx1 = clip[index + 0];
359 int cy1 = clip[index + 1];
360 int cx2 = clip[index + 2] + 1;
361 int cy2 = clip[index + 3] + 1;
381 // Clip
386 // need to clip
394 // clip point 1 with top clip bound
399 // clip point 1 with bottom clip boun
658 static int clip(int dX1, int dX2, int cX, boolean top) { method in class:JavaLineRasterizer
    [all...]
Blitter.java 42 MultiRectArea clip);
47 MultiRectArea clip);
51 Composite comp, Color bgcolor, MultiRectArea clip);
NullBlitter.java 43 MultiRectArea clip) {
48 Composite comp, Color bgcolor, MultiRectArea clip) {
53 Color bgcolor, MultiRectArea clip) {
  /external/quake/quake/src/QW/server/
world.c 26 entities never clip against themselves, or their owner
700 // did we clip the move?
716 void SV_ClipToLinks ( areanode_t *node, moveclip_t *clip )
729 if (touch == clip->passedict)
734 if (clip->type == MOVE_NOMONSTERS && touch->v.solid != SOLID_BSP)
737 if (clip->boxmins[0] > touch->v.absmax[0]
738 || clip->boxmins[1] > touch->v.absmax[1]
739 || clip->boxmins[2] > touch->v.absmax[2]
740 || clip->boxmaxs[0] < touch->v.absmin[0]
741 || clip->boxmaxs[1] < touch->v.absmin[1
827 moveclip_t clip; local
    [all...]
  /external/quake/quake/src/WinQuake/
world.cpp 26 entities never clip against themselves, or their owner
798 // did we clip the move?
814 void SV_ClipToLinks ( areanode_t *node, moveclip_t *clip )
827 if (touch == clip->passedict)
832 if (clip->type == MOVE_NOMONSTERS && touch->u.v.solid != SOLID_BSP)
835 if (clip->boxmins[0] > touch->u.v.absmax[0]
836 || clip->boxmins[1] > touch->u.v.absmax[1]
837 || clip->boxmins[2] > touch->u.v.absmax[2]
838 || clip->boxmaxs[0] < touch->u.v.absmin[0]
839 || clip->boxmaxs[1] < touch->u.v.absmin[1
925 moveclip_t clip; local
    [all...]
  /hardware/msm7k/libcopybit/
copybit.cpp 164 struct copybit_rect_t clip; local
165 intersect(&clip, scissor, dst);
167 e->dst_rect.x = clip.l;
168 e->dst_rect.y = clip.t;
169 e->dst_rect.w = clip.r - clip.l;
170 e->dst_rect.h = clip.b - clip.t;
174 e->src_rect.x = (clip.t - dst->t) + src->t;
175 e->src_rect.y = (dst->r - clip.r) + src->l
    [all...]
  /external/webkit/WebCore/page/mac/
WebDashboardRegion.h 42 NSRect clip; variable
45 - initWithRect:(NSRect)rect clip:(NSRect)clip type:(WebDashboardRegionType)type;
  /external/webkit/WebCore/plugins/symbian/
PluginContainerSymbian.cpp 47 void PluginContainerSymbian::requestGeometry(const QRect& rect, const QRegion& clip)
49 if (m_windowRect != rect || m_clipRegion != clip) {
51 m_clipRegion = clip;
  /external/opencore/codecs_v2/video/avc_h264/dec/src/
itrans.cpp 131 if ((uint)e0 > 0xFF) e0 = 0xFF & (~(e0 >> 31)); /* clip */
133 if ((uint)e1 > 0xFF) e1 = 0xFF & (~(e1 >> 31)); /* clip */
135 if ((uint)e2 > 0xFF) e2 = 0xFF & (~(e2 >> 31)); /* clip */
137 if ((uint)e3 > 0xFF) e3 = 0xFF & (~(e3 >> 31)); /* clip */
149 if ((uint)e0 > 0xFF) e0 = 0xFF & (~(e0 >> 31)); /* clip */
152 if ((uint)e1 > 0xFF) e1 = 0xFF & (~(e1 >> 31)); /* clip */
155 if ((uint)e2 > 0xFF) e2 = 0xFF & (~(e2 >> 31)); /* clip */
158 if ((uint)e3 > 0xFF) e3 = 0xFF & (~(e3 >> 31)); /* clip */
211 if ((uint)e0 > 0xFF) e0 = 0xFF & (~(e0 >> 31)); /* clip */
213 if ((uint)e1 > 0xFF) e1 = 0xFF & (~(e1 >> 31)); /* clip */
    [all...]
  /external/webkit/WebCore/platform/graphics/cg/
GraphicsContextPlatformPrivateCG.h 58 void clip(const FloatRect&) {} function in class:WebCore::GraphicsContextPlatformPrivate
59 void clip(const Path&) {} function in class:WebCore::GraphicsContextPlatformPrivate
73 void clip(const FloatRect&);
74 void clip(const Path&);
  /frameworks/base/media/libstagefright/codecs/avc/dec/src/
itrans.cpp 130 if ((uint)e0 > 0xFF) e0 = 0xFF & (~(e0 >> 31)); /* clip */
132 if ((uint)e1 > 0xFF) e1 = 0xFF & (~(e1 >> 31)); /* clip */
134 if ((uint)e2 > 0xFF) e2 = 0xFF & (~(e2 >> 31)); /* clip */
136 if ((uint)e3 > 0xFF) e3 = 0xFF & (~(e3 >> 31)); /* clip */
148 if ((uint)e0 > 0xFF) e0 = 0xFF & (~(e0 >> 31)); /* clip */
151 if ((uint)e1 > 0xFF) e1 = 0xFF & (~(e1 >> 31)); /* clip */
154 if ((uint)e2 > 0xFF) e2 = 0xFF & (~(e2 >> 31)); /* clip */
157 if ((uint)e3 > 0xFF) e3 = 0xFF & (~(e3 >> 31)); /* clip */
210 if ((uint)e0 > 0xFF) e0 = 0xFF & (~(e0 >> 31)); /* clip */
212 if ((uint)e1 > 0xFF) e1 = 0xFF & (~(e1 >> 31)); /* clip */
    [all...]
  /external/skia/include/core/
SkBlitter.h 36 virtual void blitMask(const SkMask&, const SkIRect& clip);
45 void blitMaskRegion(const SkMask& mask, const SkRegion& clip);
46 void blitRectRegion(const SkIRect& rect, const SkRegion& clip);
47 void blitRegion(const SkRegion& clip);
78 virtual void blitMask(const SkMask&, const SkIRect& clip);
99 virtual void blitMask(const SkMask&, const SkIRect& clip);
124 virtual void blitMask(const SkMask&, const SkIRect& clip);
134 SkBlitter* apply(SkBlitter* blitter, const SkRegion* clip,
  /external/webkit/WebCore/rendering/style/
StyleVisualData.cpp 44 , clip(o.clip)
  /packages/apps/Mms/src/com/android/mms/ui/
MessageListView.java 44 ClipboardManager clip = local
46 clip.setText(item.mBody);
  /frameworks/base/graphics/java/android/graphics/
Canvas.java 234 /** restore the current clip when restore() is called */
240 /** clip against the layer's bounds */
246 * Saves the current matrix and clip onto a private stack. Subsequent
257 * Based on saveFlags, can save the current matrix and clip onto a private
276 * deleted and the previous matrix/clip state is restored.
308 * deleted and the previous matrix/clip state is restored.
333 * modifications to the matrix/clip state since the last save call. It is
339 * Returns the number of matrix/clip states on the Canvas' private stack.
457 * Modify the current clip with the specified rectangle.
459 * @param rect The rect to intersect with the current clip
    [all...]

Completed in 514 milliseconds

12 3 4 5 6 7 8 91011>>